This is an automated email from the ASF dual-hosted git repository.

rhoughton 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 46641b4  GEODE-6512: Remove defunct test-by-category.
46641b4 is described below

commit 46641b42a801c99c6155e7ef12004610adc656bc
Author: Patrick Rhomberg <[email protected]>
AuthorDate: Mon Mar 11 17:04:16 2019 -0700

    GEODE-6512: Remove defunct test-by-category.
---
 build.gradle                   |   1 -
 gradle/test-by-category.gradle | 186 -----------------------------------------
 2 files changed, 187 deletions(-)

diff --git a/build.gradle b/build.gradle
index 175014a..5b9bd5d 100755
--- a/build.gradle
+++ b/build.gradle
@@ -70,7 +70,6 @@ apply from: "${scriptDir}/java.gradle"
 apply from: "${scriptDir}/ide.gradle"
 apply from: "${scriptDir}/dependency-resolution.gradle"
 apply from: "${scriptDir}/test.gradle"
-apply from: "${scriptDir}/test-by-category.gradle"
 apply from: "${scriptDir}/code-analysis.gradle"
 apply from: "${scriptDir}/sonar.gradle"
 apply from: "${scriptDir}/rat.gradle"
diff --git a/gradle/test-by-category.gradle b/gradle/test-by-category.gradle
deleted file mode 100644
index ea88c75..0000000
--- a/gradle/test-by-category.gradle
+++ /dev/null
@@ -1,186 +0,0 @@
-import org.apache.geode.gradle.TestPropertiesWriter
-
-/*
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements.  See the NOTICE file distributed with
- * this work for additional information regarding copyright ownership.
- * The ASF licenses this file to You under the Apache License, Version 2.0
- * (the "License"); you may not use this file except in compliance with
- * the License.  You may obtain a copy of the License at
- *
- *      http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-
-subprojects {
-  task securityTest(type: Test) {
-    useJUnit {
-      includeCategories 'org.apache.geode.test.junit.categories.SecurityTest'
-    }
-
-    forkEvery 1
-    doFirst {
-      TestPropertiesWriter.writeTestProperties(buildDir, name)
-    }
-
-    reports.junitXml.destination = file "$buildDir/test-reports-security"
-  }
-
-  task clientServerTest(type: Test) {
-    useJUnit {
-      includeCategories 
'org.apache.geode.test.junit.categories.ClientServerTest'
-    }
-    doFirst {
-      TestPropertiesWriter.writeTestProperties(buildDir, name)
-    }
-    reports.junitXml.destination = file "$buildDir/test-reports-security"
-  }
-
-  task dlockTest(type: Test) {
-    useJUnit {
-      includeCategories 'org.apache.geode.test.junit.categories.DLockTest'
-    }
-    doFirst {
-      TestPropertiesWriter.writeTestProperties(buildDir, name)
-    }
-    reports.junitXml.destination = file "$buildDir/test-reports-dlock"
-  }
-
-  task backwardCompatibilityTest(type: Test) {
-    useJUnit {
-      includeCategories 
'org.apache.geode.test.junit.categories.BackwardCompatibilityTest'
-    }
-    doFirst {
-      TestPropertiesWriter.writeTestProperties(buildDir, name)
-    }
-    reports.junitXml.destination = file 
"$buildDir/test-reports-backwardcompatibility"
-  }
-
-  task clientSubscriptionTest(type: Test) {
-    useJUnit {
-      includeCategories 
'org.apache.geode.test.junit.categories.ClientSubscriptionTest'
-    }
-    doFirst {
-      TestPropertiesWriter.writeTestProperties(buildDir, name)
-    }
-    reports.junitXml.destination = file 
"$buildDir/test-reports-client-subscription"
-  }
-  task queryTest(type: Test) {
-    useJUnit {
-      includeCategories 'org.apache.geode.test.junit.categories.OQLQueryTest'
-    }
-    doFirst {
-      TestPropertiesWriter.writeTestProperties(buildDir, name)
-    }
-    reports.junitXml.destination = file "$buildDir/test-reports-oql-query"
-  }
-
-  task indexTest(type: Test) {
-    useJUnit {
-      includeCategories 'org.apache.geode.test.junit.categories.OQLIndexTest'
-    }
-    doFirst {
-      TestPropertiesWriter.writeTestProperties(buildDir, name)
-    }
-    reports.junitXml.destination = file "$buildDir/test-reports-oql-index"
-  }
-
-  task functionServiceTest(type: Test) {
-    useJUnit {
-      includeCategories 
'org.apache.geode.test.junit.categories.FunctionServiceTest'
-    }
-    doFirst {
-      TestPropertiesWriter.writeTestProperties(buildDir, name)
-    }
-    reports.junitXml.destination = file 
"$buildDir/test-reports-function-service"
-  }
-
-  task membershipTest(type: Test) {
-    useJUnit {
-      includeCategories 'org.apache.geode.test.junit.categories.MembershipTest'
-    }
-    doFirst {
-      TestPropertiesWriter.writeTestProperties(buildDir, name)
-    }
-    reports.junitXml.destination = file "$buildDir/test-reports-membership"
-  }
-  task luceneTest(type: Test) {
-    useJUnit {
-      includeCategories 'org.apache.geode.test.junit.categories.LuceneTest'
-    }
-    doFirst {
-      TestPropertiesWriter.writeTestProperties(buildDir, name)
-    }
-    reports.junitXml.destination = file "$buildDir/test-reports-lucene"
-  }
-
-  task aeqTest(type: Test) {
-    useJUnit {
-      includeCategories 'org.apache.geode.test.junit.categories.AEQTest'
-    }
-    doFirst {
-      TestPropertiesWriter.writeTestProperties(buildDir, name)
-    }
-    reports.junitXml.destination = file "$buildDir/test-reports-aeq"
-  }
-
-
-  task sessionTest(type: Test) {
-    useJUnit {
-      includeCategories 'org.apache.geode.test.junit.categories.SessionTest'
-    }
-    doFirst {
-      TestPropertiesWriter.writeTestProperties(buildDir, name)
-    }
-    reports.junitXml.destination = file "$buildDir/test-reports-session"
-  }
-
-  task wanTest(type: Test) {
-    useJUnit {
-      includeCategories 'org.apache.geode.test.junit.categories.WanTest'
-    }
-    doFirst {
-      TestPropertiesWriter.writeTestProperties(buildDir, name)
-    }
-    reports.junitXml.destination = file "$buildDir/test-reports-wan"
-  }
-
-
-  task redisTest(type: Test) {
-    useJUnit {
-      includeCategories 'org.apache.geode.test.junit.categories.RedisTest'
-    }
-    doFirst {
-      TestPropertiesWriter.writeTestProperties(buildDir, name)
-    }
-    forkEvery 1
-    reports.junitXml.destination = file "$buildDir/test-reports-redis"
-  }
-
-  task restAPITest(type: Test) {
-    useJUnit {
-      includeCategories 'org.apache.geode.test.junit.categories.RestAPITest'
-    }
-    doFirst {
-      TestPropertiesWriter.writeTestProperties(buildDir, name)
-    }
-    forkEvery 1
-    reports.junitXml.destination = file "$buildDir/test-reports-restAPI"
-  }
-
-  task serializationTest(type: Test) {
-    useJUnit {
-      includeCategories 
'org.apache.geode.test.junit.categories.SerializationTest'
-    }
-    doFirst {
-      TestPropertiesWriter.writeTestProperties(buildDir, name)
-    }
-    reports.junitXml.destination = file "$buildDir/test-reports-serialization"
-  }
-}

Reply via email to