aboutsummaryrefslogtreecommitdiffstats
path: root/build.gradle
diff options
context:
space:
mode:
Diffstat (limited to 'build.gradle')
-rw-r--r--build.gradle8
1 files changed, 8 insertions, 0 deletions
diff --git a/build.gradle b/build.gradle
index 46e8fbc3..66425380 100644
--- a/build.gradle
+++ b/build.gradle
@@ -98,6 +98,14 @@ allprojects {
}
ext.unpublished = unpublished
+
+ // This project property is set during nightly stress test
+ def stressTest = project.properties['stressTest']
+
+ // Copy it to all test tasks
+ tasks.withType(Test) {
+ systemProperty 'stressTest', stressTest
+ }
}
allprojects {