From: <tho...@us...> - 2013-12-04 15:06:20
|
Revision: 7607 http://bigdata.svn.sourceforge.net/bigdata/?rev=7607&view=rev Author: thompsonbry Date: 2013-12-04 15:06:14 +0000 (Wed, 04 Dec 2013) Log Message: ----------- Conditionally disabling a test that is known to fail for HA CI. This is the focus of #779 (write pipeline socket resynchronization). Sudden kills can leave garbage in the socket channel that prevent correct failover. Modified Paths: -------------- branches/BIGDATA_RELEASE_1_3_0/bigdata-jini/src/test/com/bigdata/journal/jini/ha/TestHA3ChangeLeader.java Modified: branches/BIGDATA_RELEASE_1_3_0/bigdata-jini/src/test/com/bigdata/journal/jini/ha/TestHA3ChangeLeader.java =================================================================== --- branches/BIGDATA_RELEASE_1_3_0/bigdata-jini/src/test/com/bigdata/journal/jini/ha/TestHA3ChangeLeader.java 2013-12-04 14:54:36 UTC (rev 7606) +++ branches/BIGDATA_RELEASE_1_3_0/bigdata-jini/src/test/com/bigdata/journal/jini/ha/TestHA3ChangeLeader.java 2013-12-04 15:06:14 UTC (rev 7607) @@ -4,6 +4,7 @@ import java.util.concurrent.FutureTask; import java.util.concurrent.TimeUnit; +import com.bigdata.BigdataStatics; import com.bigdata.ha.HAGlue; import com.bigdata.journal.jini.ha.HAJournalTest.HAGlueTest; @@ -91,6 +92,7 @@ } public void testStartABC_KillLeader_RandomTrans() throws Exception { + if(BigdataStatics.runKnownBadTests)return; fail("Test disabled pending reconcilation of socket ticket"); final Random r = new Random(); final int ntrans = r.nextInt(900); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |