This is an automated email from the ASF dual-hosted git repository.
upthewaterspout pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/geode.git
The following commit(s) were added to refs/heads/develop by this push:
new 648f8f1 GEODE-5388: Fixing repeatTest task after splitting test
source sets
648f8f1 is described below
commit 648f8f1786d519bee349513ba9d6d0f8593be481
Author: Dan Smith <[email protected]>
AuthorDate: Thu Jul 19 16:00:25 2018 -0700
GEODE-5388: Fixing repeatTest task after splitting test source sets
This task was broken after we split the test source into multiple source
sets
---
gradle/test.gradle | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/gradle/test.gradle b/gradle/test.gradle
index da47c11..e940719 100644
--- a/gradle/test.gradle
+++ b/gradle/test.gradle
@@ -165,6 +165,11 @@ subprojects {
useJUnit {}
outputs.upToDateWhen{false}
+
+ classpath += project.sourceSets.distributedTest.runtimeClasspath
+ testClassesDirs += project.sourceSets.distributedTest.output.classesDirs
+ classpath += project.sourceSets.integrationTest.runtimeClasspath
+ testClassesDirs += project.sourceSets.integrationTest.output.classesDirs
}
task flakyTest(type:Test) {