Thanks for the tips, Kirk! I think #2 is something I ought to do more often.

On Feb 28, 2017 5:59 PM, "Kirk Lund" <kl...@pivotal.io> wrote:

> Everything is building fine now, so I'm going to revert that commit.
>
> Avinash, go ahead and recommit it after the issue with the sub-class
> parameterization is fixed and it passes review and precheckin.
>
> I don't know of any way to make JUnit Parameterized work with JUnitParams,
> and I'd recommend not trying to do that.
>
> Here's a few generalized JUnit test recommendations. One or two might be of
> help in this case:
>
> 1) JUnitParams seems more flexible and parameterizes at the test method
> level, whereas Parameterized parameterizes at the class level which forces
> all of the test methods to repeat with new parameters.
>
> 2) I favor splitting tests. If you have a test method that requires
> different setUp/tearDown or parameterization and it no longer fits well,
> then splitting it up into multiple test classes is probably a good idea.
>
> 3) I've seen subclassing of tests be horribly abused, so I'd recommend
> avoiding this whenever possible. It's frequently better to use a custom
> JUnit Rule or even to repeat code in setUp/tearDown.
>
> 4) As an addendum to #3, don't be tempted to have one test class
> instantiate another test class and invoke methods on it. This just creates
> horrible spaghetti.
>
> On Tue, Feb 28, 2017 at 11:29 AM, Mark Bretl <asf.mbr...@gmail.com> wrote:
>
> > There is an AWS outage right now, not sure if that is affecting the
> Gradle
> > plugin site...
> >
> > --Mark
> >
> > On Tue, Feb 28, 2017 at 10:53 AM, Bruce Schuchardt <
> bschucha...@pivotal.io
> > >
> > wrote:
> >
> > > I deleted my gradle cache & am also having trouble downloading things
> > >
> > >    :buildSrc:build UP-TO-DATE
> > >
> > >    FAILURE: Build failed with an exception.
> > >
> > >    * What went wrong:
> > >    A problem occurred configuring root project 'geode'.
> > >     > Could not resolve all dependencies for configuration
> ':classpath'.
> > >        > Could not resolve
> > >    gradle.plugin.org.nosphere.apache:creadur-rat-gradle:0.2.0.
> > >          Required by:
> > >              :geode:unspecified
> > >           > Could not resolve
> > >    gradle.plugin.org.nosphere.apache:creadur-rat-gradle:0.2.0.
> > >              > Could not get resource
> > >    'https://plugins.gradle.org/m2/gradle/plugin/org/nosphere/a
> > > pache/creadur-rat-gradle/0.2.0/creadur-rat-gradle-0.2.0.pom'.
> > >                 > Could not GET
> > >    'https://plugins.gradle.org/m2/gradle/plugin/org/nosphere/a
> > > pache/creadur-rat-gradle/0.2.0/creadur-rat-gradle-0.2.0.pom'.
> > >    Received status code 503 from server: Service Unavailable
> > >    etc.
> > >
> > > I'm getting 503s on everything but the initial gradle download.
> > >
> > >
> > > Le 2/28/2017 à 10:40 AM, Avinash Dongre a écrit :
> > >
> > >> I am getting following error while running precheckin.
> > >>
> > >> * Where:
> > >> Build file '/home/ampool/private/geode/java/geode/geode-old-versions/
> bu
> > >> ild.gradle'
> > >> line: 58
> > >>
> > >> * What went wrong:
> > >> Execution failed for task ':geode-old-versions:createGeo
> > >> deClasspathsFile'.
> > >>
> > >>> Could not resolve all dependencies for configuration
> > >>> ':geode-old-versions:
> > >>>
> > >> test110Runtime'.
> > >>     > Could not download geode-cq.jar (org.apache.geode:geode-cq:1.
> 1.0)
> > >>        > Could not get resource 'https://repo1.maven.org/
> > >> maven2/org/apache/geode/geode-cq/1.1.0/geode-cq-1.1.0.jar'.
> > >>           > Could not GET 'https://repo1.maven.org/
> > >> maven2/org/apache/geode/geode-cq/1.1.0/geode-cq-1.1.0.jar'. Received
> > >> status
> > >> code 503 from server: Connection timed out
> > >>
> > >>
> > >>
> > >> On Tue, Feb 28, 2017 at 11:06 PM, Avinash Dongre <adon...@apache.org>
> > >> wrote:
> > >>
> > >> It is my mistake.
> > >>>
> > >>> I will revert back my changes for this Test and raise a PR.
> > >>>
> > >>> Thanks
> > >>> Avinash
> > >>>
> > >>>
> > >>> On Tue, Feb 28, 2017 at 10:26 PM, Bruce Schuchardt <
> > >>> bschucha...@pivotal.io
> > >>>
> > >>>> wrote:
> > >>>> ClientServerMiscBCDUnitTest is failing due to adongre's commit
> > >>>> yesterday.  A parameterized test was added to a superclass, causing
> > >>>> conflict with the subclass's parameterization of all the
> superclass's
> > >>>> methods
> > >>>>
> > >>>>
> > >>>> java.lang.Exception: Method testProxyRegionClientServerOp should
> have
> > no
> > >>>> parameters
> > >>>>
> > >>>>      at org.junit.runners.model.FrameworkMethod.
> validatePublicVoidNo
> > >>>> Arg(FrameworkMethod.java:76)
> > >>>>      at org.junit.runners.ParentRunner.
> validatePublicVoidNoArgMethod
> > >>>> s(ParentRunner.java:155)
> > >>>>      at org.junit.runners.BlockJUnit4ClassRunner.
> validateTestMethods
> > >>>> (BlockJUnit4ClassRunner.java:208)
> > >>>>      at org.junit.runners.BlockJUnit4ClassRunner.
> validateInstanceMet
> > >>>> hods(BlockJUnit4ClassRunner.java:188)
> > >>>>      at org.junit.runners.BlockJUnit4ClassRunner.
> collectInitializati
> > >>>> onErrors(BlockJUnit4ClassRunner.java:128)
> > >>>>      at org.junit.runners.ParentRunner.validate(
> > ParentRunner.java:416)
> > >>>>      at org.junit.runners.ParentRunner.<init>(ParentRunner.java:84)
> > >>>>      at org.junit.runners.BlockJUnit4ClassRunner.<init>(
> BlockJUnit4C
> > >>>> lassRunner.java:65)
> > >>>>      at org.junit.runners.parameterized.
> BlockJUnit4ClassRunnerWithPa
> > >>>> rameters.<init>(BlockJUnit4ClassRunnerWithParameters.java:27)
> > >>>>      at org.apache.geode.test.junit.runners.
> CategoryWithParameterize
> > >>>> dRunner.<init>(CategoryWithParameterizedRunner.java:29)
> > >>>>      at org.apache.geode.test.junit.runners.
> CategoryWithParameterize
> > >>>> dRunnerFactory.createRunnerForTestWithParameters(CategoryWit
> > >>>> hParameterizedRunnerFactory.java:40)
> > >>>>      at org.junit.runners.Parameterized.
> createRunnersForParameters(P
> > >>>> arameterized.java:313)
> > >>>>      at org.junit.runners.Parameterized.<init>(
> > Parameterized.java:248)
> > >>>>      at sun.reflect.NativeConstructorAccessorImpl.
> newInstance0(Native
> > >>>> Method)
> > >>>>      at sun.reflect.NativeConstructorAccessorImpl.
> newInstance(Native
> > >>>> ConstructorAccessorImpl.java:62)
> > >>>>      at sun.reflect.DelegatingConstructorAccessorI
> mpl.newInstance(De
> > >>>> legatingConstructorAccessorImpl.java:45)
> > >>>>      at java.lang.reflect.Constructor.newInstance(Constructor.java:
> > 422)
> > >>>>      at org.junit.internal.builders.AnnotatedBuilder.buildRunner(
> Ann
> > >>>> otatedBuilder.java:104)
> > >>>>      at org.junit.internal.builders.AnnotatedBuilder.
> runnerForClass(
> > >>>> AnnotatedBuilder.java:86)
> > >>>>      at org.junit.runners.model.RunnerBuilder.
> safeRunnerForClass(Run
> > >>>> nerBuilder.java:59)
> > >>>>      at org.junit.internal.builders.AllDefaultPossibilitiesBuilder
> .r
> > >>>> unnerForClass(AllDefaultPossibilitiesBuilder.java:26)
> > >>>>      at org.junit.runners.model.RunnerBuilder.
> safeRunnerForClass(Run
> > >>>> nerBuilder.java:59)
> > >>>>      at org.junit.internal.requests.ClassRequest.getRunner(
> ClassRequ
> > >>>> est.java:33)
> > >>>>      at com.intellij.junit4.JUnit4IdeaTestRunner.
> startRunnerWithArgs
> > >>>> (JUnit4IdeaTestRunner.java:49)
> > >>>>      at com.intellij.rt.execution.junit.IdeaTestRunner$Repeater.
> star
> > >>>> tRunnerWithArgs(IdeaTestRunner.java:51)
> > >>>>      at com.intellij.rt.execution.junit.JUnitStarter.
> prepareStreamsA
> > >>>> ndStart(JUnitStarter.java:237)
> > >>>>      at com.intellij.rt.execution.junit.JUnitStarter.main(
> JUnitStart
> > >>>> er.java:70)
> > >>>>      at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
> > >>>>      at sun.reflect.NativeMethodAccessorImpl.
> invoke(NativeMethodAcce
> > >>>> ssorImpl.java:62)
> > >>>>      at sun.reflect.DelegatingMethodAccessorImpl.
> invoke(DelegatingMe
> > >>>> thodAccessorImpl.java:43)
> > >>>>      at java.lang.reflect.Method.invoke(Method.java:497)
> > >>>>      at com.intellij.rt.execution.application.AppMain.main(
> AppMain.j
> > >>>> ava:147)
> > >>>>
> > >>>> here is the commit:
> > >>>>
> > >>>> commit f2721dc81256bcec84e855e9dc52d2f234e745da
> > >>>> Author: adongre <adon...@apache.org> <adon...@apache.org>
> > >>>> Date:   Sat Feb 4 21:34:37 2017 +0530
> > >>>>
> > >>>>      GEODE-1887: Now Size api goes through ServerProxy when cache is
> > of
> > >>>> type client and DataPolicy is Empty.
> > >>>>      Added a test for both PR and Replicated regions.
> > >>>>
> > >>>>      GEODE-1887: Addressing review comments, refactor test based on
> > the
> > >>>>      region type.
> > >>>>
> > >>>>      GEODE-1887: Spotless fixes.
> > >>>>
> > >>>>      GEODE-1887: Addressing Review Comments.
> > >>>>
> > >>>>      GEODE-1887: Spotless
> > >>>>
> > >>>>
> > >>>>
> > >>>>
> > >>>> Le 2/28/2017 à 8:35 AM, Apache Jenkins Server a écrit :
> > >>>>
> > >>>> See <https://builds.apache.org/job/Geode-nightly/762/display/red
> > >>>> irect?page=changes> <https://builds.apache.org/job
> > >>>> /Geode-nightly/762/display/redirect?page=changes>
> > >>>>
> > >>>> Changes:
> > >>>>
> > >>>> [adongre] GEODE-2428: Adding support of
> Serialization/deserialization
> > of
> > >>>>
> > >>>> [adongre] GEODE-1887: Now Size api goes through ServerProxy when
> cache
> > >>>> is of type
> > >>>>
> > >>>> [ukohlmeyer] GEODE-2142: Removal of offending JSON.ORG code and
> > >>>> license information
> > >>>>
> > >>>> [ukohlmeyer] GEODE-2142: Removal of offending JSON.ORG code and
> > >>>> license information
> > >>>>
> > >>>> [ukohlmeyer] GEODE-2142: Adding JSON library from the
> > >>>>
> > >>>> [ukohlmeyer] GEODE-2142: Amending JSONObject.java with
> > >>>> cyclicalDependency management
> > >>>>
> > >>>> [ukohlmeyer] GEODE-2142: Refactoring of tests to work with new
> > >>>> JSONObject class.
> > >>>>
> > >>>> [ukohlmeyer] GEODE-2142: spotless
> > >>>>
> > >>>> [ukohlmeyer] GEODE-2142: cyclical dependency in gradle build
> > >>>>
> > >>>> [ukohlmeyer] GEODE-2142: final compiling build
> > >>>>
> > >>>> [ukohlmeyer] GEODE-2142: removing tests so run precheckin
> > >>>>
> > >>>> [ukohlmeyer] GEODE-2142: Removing JSON licence stuff from NOTICE
> files
> > >>>>
> > >>>> [upthewaterspout] GEODE-2515: Disabling
> BaseLineAndCompareQueryPerfJUn
> > >>>> itTest
> > >>>>
> > >>>> [huynhja] GEODE-2545: NPE during lucene query execution when cache
> is
> > >>>> closing or
> > >>>>
> > >>>> [boglesby] GEODE-2404: Added support for destroying lucene indexes
> > >>>>
> > >>>> [upthewaterspout] GEODE-2538: Don't invoke a cache loader when
> > fetching
> > >>>> values for a
> > >>>>
> > >>>> ------------------------------------------
> > >>>> [...truncated 111.31 KB...]
> > >>>> :geode-cq:compileTestJavaNote: Some input files use or override a
> > >>>> deprecated API.
> > >>>> Note: Recompile with -Xlint:deprecation for details.
> > >>>> Note: Some input files use unchecked or unsafe operations.
> > >>>> Note: Recompile with -Xlint:unchecked for details.
> > >>>>
> > >>>> :geode-cq:processTestResources
> > >>>> :geode-cq:testClasses
> > >>>> :geode-cq:checkMissedTests
> > >>>> :geode-cq:spotlessJavaCheck
> > >>>> :geode-cq:spotlessCheck
> > >>>> :geode-cq:test
> > >>>> :geode-cq:check
> > >>>> :geode-cq:build
> > >>>> :geode-cq:distributedTest
> > >>>> :geode-cq:flakyTest
> > >>>> :geode-cq:integrationTest
> > >>>> :geode-json:assemble
> > >>>> :geode-json:compileTestJava UP-TO-DATE
> > >>>> :geode-json:processTestResources
> > >>>> :geode-json:testClasses
> > >>>> :geode-json:checkMissedTests UP-TO-DATE
> > >>>> :geode-json:spotlessJavaCheck
> > >>>> :geode-json:spotlessCheck
> > >>>> :geode-json:test UP-TO-DATE
> > >>>> :geode-json:check
> > >>>> :geode-json:build
> > >>>> :geode-json:distributedTest UP-TO-DATE
> > >>>> :geode-json:flakyTest UP-TO-DATE
> > >>>> :geode-json:integrationTest UP-TO-DATE
> > >>>> :geode-junit:javadoc
> > >>>> :geode-junit:javadocJar
> > >>>> :geode-junit:sourcesJar
> > >>>> :geode-junit:signArchives SKIPPED
> > >>>> :geode-junit:assemble
> > >>>> :geode-junit:compileTestJava
> > >>>> :geode-junit:processTestResources UP-TO-DATE
> > >>>> :geode-junit:testClasses
> > >>>> :geode-junit:checkMissedTests
> > >>>> :geode-junit:spotlessJavaCheck
> > >>>> :geode-junit:spotlessCheck
> > >>>> :geode-junit:test
> > >>>> :geode-junit:check
> > >>>> :geode-junit:build
> > >>>> :geode-junit:distributedTest
> > >>>> :geode-junit:flakyTest
> > >>>> :geode-junit:integrationTest
> > >>>> :geode-lucene:assemble
> > >>>> :geode-lucene:compileTestJavaNote: Some input files use or
> override a
> > >>>> deprecated API.
> > >>>> Note: Recompile with -Xlint:deprecation for details.
> > >>>> Note: Some input files use unchecked or unsafe operations.
> > >>>> Note: Recompile with -Xlint:unchecked for details.
> > >>>>
> > >>>> :geode-lucene:processTestResources
> > >>>> :geode-lucene:testClasses
> > >>>> :geode-lucene:checkMissedTests
> > >>>> :geode-lucene:spotlessJavaCheck
> > >>>> :geode-lucene:spotlessCheck
> > >>>> :geode-lucene:test
> > >>>> :geode-lucene:check
> > >>>> :geode-lucene:build
> > >>>> :geode-lucene:distributedTest
> > >>>> :geode-lucene:flakyTest
> > >>>> :geode-lucene:integrationTest
> > >>>> :geode-old-client-support:assemble
> > >>>> :geode-old-client-support:compileTestJava
> > >>>> :geode-old-client-support:processTestResources UP-TO-DATE
> > >>>> :geode-old-client-support:testClasses
> > >>>> :geode-old-client-support:checkMissedTests
> > >>>> :geode-old-client-support:spotlessJavaCheck
> > >>>> :geode-old-client-support:spotlessCheck
> > >>>> :geode-old-client-support:test
> > >>>> :geode-old-client-support:check
> > >>>> :geode-old-client-support:build
> > >>>> :geode-old-client-support:distributedTest
> > >>>> :geode-old-client-support:flakyTest
> > >>>> :geode-old-client-support:integrationTest
> > >>>> :geode-old-versions:javadoc UP-TO-DATE
> > >>>> :geode-old-versions:javadocJar
> > >>>> :geode-old-versions:sourcesJar
> > >>>> :geode-old-versions:signArchives SKIPPED
> > >>>> :geode-old-versions:assemble
> > >>>> :geode-old-versions:compileTestJava UP-TO-DATE
> > >>>> :geode-old-versions:processTestResources UP-TO-DATE
> > >>>> :geode-old-versions:testClasses UP-TO-DATE
> > >>>> :geode-old-versions:checkMissedTests UP-TO-DATE
> > >>>> :geode-old-versions:spotlessJavaCheck
> > >>>> :geode-old-versions:spotlessCheck
> > >>>> :geode-old-versions:test UP-TO-DATE
> > >>>> :geode-old-versions:check
> > >>>> :geode-old-versions:build
> > >>>> :geode-old-versions:distributedTest UP-TO-DATE
> > >>>> :geode-old-versions:flakyTest UP-TO-DATE
> > >>>> :geode-old-versions:integrationTest UP-TO-DATE
> > >>>> :geode-pulse:assemble
> > >>>> :geode-pulse:compileTestJavaNote: <https://builds.apache.org/job
> > >>>> /Geode-nightly/ws/geode-pulse/src/test/java/org/apache/
> > >>>> geode/tools/pulse/tests/ui/PulseBase.java> <
> > >>>> https://builds.apache.org/job/Geode-nightly/ws/geode-pulse/
> > >>>> src/test/java/org/apache/geode/tools/pulse/tests/ui/PulseBase.java>
> > >>>> uses or overrides a deprecated API.
> > >>>> Note: Recompile with -Xlint:deprecation for details.
> > >>>> Note: <https://builds.apache.org/job/Geode-nightly/ws/geode-pulse/
> > >>>> src/test/java/org/apache/geode/tools/pulse/controllers/
> > >>>> PulseControllerJUnitTest.java> <https://builds.apache.org/job
> > >>>> /Geode-nightly/ws/geode-pulse/src/test/java/org/apache/
> > >>>> geode/tools/pulse/controllers/PulseControllerJUnitTest.java> uses
> > >>>> unchecked or unsafe operations.
> > >>>> Note: Recompile with -Xlint:unchecked for details.
> > >>>>
> > >>>> :geode-pulse:processTestResources
> > >>>> :geode-pulse:testClasses
> > >>>> :geode-pulse:checkMissedTests
> > >>>> :geode-pulse:spotlessJavaCheck
> > >>>> :geode-pulse:spotlessCheck
> > >>>> :geode-pulse:test
> > >>>> :geode-pulse:check
> > >>>> :geode-pulse:build
> > >>>> :geode-pulse:distributedTest
> > >>>> :geode-pulse:flakyTest
> > >>>> :geode-pulse:integrationTest
> > >>>> :geode-rebalancer:assemble
> > >>>> :geode-rebalancer:compileTestJava
> > >>>> :geode-rebalancer:processTestResources UP-TO-DATE
> > >>>> :geode-rebalancer:testClasses
> > >>>> :geode-rebalancer:checkMissedTests
> > >>>> :geode-rebalancer:spotlessJavaCheck
> > >>>> :geode-rebalancer:spotlessCheck
> > >>>> :geode-rebalancer:test
> > >>>> :geode-rebalancer:check
> > >>>> :geode-rebalancer:build
> > >>>> :geode-rebalancer:distributedTest
> > >>>> :geode-rebalancer:flakyTest
> > >>>> :geode-rebalancer:integrationTest
> > >>>> :geode-wan:assemble
> > >>>> :geode-wan:compileTestJavaNote: Some input files use or override a
> > >>>> deprecated API.
> > >>>> Note: Recompile with -Xlint:deprecation for details.
> > >>>> Note: Some input files use unchecked or unsafe operations.
> > >>>> Note: Recompile with -Xlint:unchecked for details.
> > >>>>
> > >>>> :geode-wan:processTestResources
> > >>>> :geode-wan:testClasses
> > >>>> :geode-wan:checkMissedTests
> > >>>> :geode-wan:spotlessJavaCheck
> > >>>> :geode-wan:spotlessCheck
> > >>>> :geode-wan:test
> > >>>> :geode-wan:check
> > >>>> :geode-wan:build
> > >>>> :geode-wan:distributedTest
> > >>>> :geode-wan:flakyTest
> > >>>> :geode-wan:integrationTest
> > >>>> :geode-web:assemble
> > >>>> :geode-web:compileTestJavaNote: Some input files use or override a
> > >>>> deprecated API.
> > >>>> Note: Recompile with -Xlint:deprecation for details.
> > >>>> Note: Some input files use unchecked or unsafe operations.
> > >>>> Note: Recompile with -Xlint:unchecked for details.
> > >>>>
> > >>>> :geode-web:processTestResources UP-TO-DATE
> > >>>> :geode-web:testClasses
> > >>>> :geode-web:checkMissedTests
> > >>>> :geode-web:spotlessJavaCheck
> > >>>> :geode-web:spotlessCheck
> > >>>> :geode-web:test
> > >>>> :geode-web:check
> > >>>> :geode-web:build
> > >>>> :geode-web:distributedTest
> > >>>> :geode-web:flakyTest
> > >>>> :geode-web:integrationTest
> > >>>> :geode-web-api:assemble
> > >>>> :geode-web-api:compileTestJava
> > >>>> :geode-web-api:processTestResources UP-TO-DATE
> > >>>> :geode-web-api:testClasses
> > >>>> :geode-web-api:checkMissedTests
> > >>>> :geode-web-api:spotlessJavaCheck
> > >>>> :geode-web-api:spotlessCheck
> > >>>> :geode-web-api:test
> > >>>> :geode-web-api:check
> > >>>> :geode-web-api:build
> > >>>> :geode-web-api:distributedTest
> > >>>> :geode-web-api:flakyTest
> > >>>> :geode-web-api:integrationTest
> > >>>> :combineReports
> > >>>> All test reports at <https://builds.apache.org/job
> > >>>> /Geode-nightly/ws/build/reports/combined> <
> > >>>> https://builds.apache.org/job/Geode-nightly/ws/build/
> reports/combined
> > >
> > >>>> :extensions/geode-modules:precheckin
> > >>>> :extensions/geode-modules-assembly:precheckin
> > >>>> :extensions/geode-modules-session:precheckin
> > >>>> :extensions/geode-modules-session-internal:precheckin
> > >>>> :extensions/geode-modules-tomcat7:precheckin
> > >>>> :extensions/geode-modules-tomcat8:precheckin
> > >>>> :geode-assembly:precheckin
> > >>>> :geode-benchmarks:precheckin
> > >>>> :geode-common:precheckin
> > >>>> :geode-cq:precheckin
> > >>>> :geode-json:precheckin
> > >>>> :geode-junit:precheckin
> > >>>> :geode-lucene:precheckin
> > >>>> :geode-old-client-support:precheckin
> > >>>> :geode-old-versions:precheckin
> > >>>> :geode-pulse:precheckin
> > >>>> :geode-rebalancer:precheckin
> > >>>> :geode-wan:precheckin
> > >>>> :geode-web:precheckin
> > >>>> :geode-web-api:precheckin
> > >>>> :compileJava UP-TO-DATE
> > >>>> :processResources UP-TO-DATE
> > >>>> :classes UP-TO-DATE
> > >>>> :jar
> > >>>> :uploadArchives
> > >>>> :extensions/geode-modules:uploadArchives
> > >>>> :extensions/geode-modules-assembly:uploadArchives SKIPPED
> > >>>> :extensions/geode-modules-session:uploadArchives
> > >>>> :extensions/geode-modules-session-internal:uploadArchives
> > >>>> :extensions/geode-modules-tomcat7:uploadArchives
> > >>>> :extensions/geode-modules-tomcat8:uploadArchives
> > >>>> :geode-assembly:uploadArchives SKIPPED
> > >>>> :geode-benchmarks:uploadArchives SKIPPED
> > >>>> :geode-common:uploadArchives
> > >>>> :geode-core:uploadArchives
> > >>>> :geode-cq:uploadArchives
> > >>>> :geode-json:uploadArchives
> > >>>> :geode-junit:uploadArchives
> > >>>> :geode-lucene:uploadArchives
> > >>>> :geode-old-client-support:uploadArchives
> > >>>> :geode-old-versions:uploadArchives SKIPPED
> > >>>> :geode-pulse:uploadArchives
> > >>>> :geode-rebalancer:uploadArchives
> > >>>> :geode-wan:uploadArchives
> > >>>> :geode-web:uploadArchives
> > >>>> :geode-web-api:uploadArchives
> > >>>>
> > >>>> FAILURE: Build completed with 2 failures.
> > >>>>
> > >>>> 1: Task failed with an exception.
> > >>>> -----------
> > >>>> * What went wrong:
> > >>>> Execution failed for task ':geode-core:distributedTest'.
> > >>>>
> > >>>> There were failing tests. See the report at: file://<
> > >>>> https://builds.apache.org/job/Geode-nightly/ws/geode
> > >>>> -core/build/reports/distributedTest/index.html> <
> > >>>> https://builds.apache.org/job/Geode-nightly/ws/geode-core/
> > >>>> build/reports/distributedTest/index.html>
> > >>>>
> > >>>> * Try:
> > >>>> Run with --stacktrace option to get the stack trace. Run with --info
> > or
> > >>>> --debug option to get more log output.
> > >>>> ============================================================
> > >>>> ==================
> > >>>>
> > >>>> 2: Task failed with an exception.
> > >>>> -----------
> > >>>> * What went wrong:
> > >>>> Execution failed for task ':geode-core:flakyTest'.
> > >>>>
> > >>>> There were failing tests. See the report at: file://<
> > >>>> https://builds.apache.org/job/Geode-nightly/ws/geode
> > >>>> -core/build/reports/flakyTest/index.html> <
> > >>>> https://builds.apache.org/job/Geode-nightly/ws/geode-core/
> > >>>> build/reports/flakyTest/index.html>
> > >>>>
> > >>>> * Try:
> > >>>> Run with --stacktrace option to get the stack trace. Run with --info
> > or
> > >>>> --debug option to get more log output.
> > >>>> ============================================================
> > >>>> ==================
> > >>>>
> > >>>> BUILD FAILED
> > >>>>
> > >>>> Total time: 12 hrs 49 mins 9.427 secs
> > >>>> Build step 'Invoke Gradle script' changed build result to FAILURE
> > >>>> Build step 'Invoke Gradle script' marked build as failure
> > >>>> Archiving artifacts
> > >>>> Compressed 323.44 MB of artifacts by 12.5% relative to #746
> > >>>> Recording test results
> > >>>>
> > >>>>
> > >>>>
> > >>>>
> > >
> >
>

Reply via email to