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 316cd16 GEODE-5902: Fixing repeatTest task dependencies (#2668)
316cd16 is described below
commit 316cd1667227a8cfc3bf834cd768ca05f5aa8222
Author: Dan Smith <[email protected]>
AuthorDate: Mon Oct 22 16:29:44 2018 -0700
GEODE-5902: Fixing repeatTest task dependencies (#2668)
GEODE-5902: Fixing repeatTest task dependencies
Changing the repeatXXXTest tasks to copy the dependencies from their
source task.
---
gradle/test.gradle | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/gradle/test.gradle b/gradle/test.gradle
index b89a366..7cbc027 100644
--- a/gradle/test.gradle
+++ b/gradle/test.gradle
@@ -168,26 +168,31 @@ subprojects {
}
task repeatDistributedTest(type: RepeatTest) {
+ dependsOn {distributedTest.taskDependencies}
classpath = project.sourceSets.distributedTest.runtimeClasspath
testClassesDirs = project.sourceSets.distributedTest.output.classesDirs
}
task repeatIntegrationTest(type: RepeatTest) {
+ dependsOn {integrationTest.taskDependencies}
classpath = project.sourceSets.integrationTest.runtimeClasspath
testClassesDirs = project.sourceSets.integrationTest.output.classesDirs
}
task repeatAcceptanceTest(type: RepeatTest) {
+ dependsOn {acceptanceTest.taskDependencies}
classpath = project.sourceSets.acceptanceTest.runtimeClasspath
testClassesDirs = project.sourceSets.acceptanceTest.output.classesDirs
}
task repeatUpgradeTest(type: RepeatTest) {
+ dependsOn {upgradeTest.taskDependencies}
classpath = project.sourceSets.upgradeTest.runtimeClasspath
testClassesDirs = project.sourceSets.upgradeTest.output.classesDirs
}
task repeatUnitTest(type: RepeatTest) {
+ dependsOn {test.taskDependencies}
// default classpath works for this one.
}