From: <mar...@us...> - 2013-11-13 17:35:05
|
Revision: 7544 http://bigdata.svn.sourceforge.net/bigdata/?rev=7544&view=rev Author: martyncutcher Date: 2013-11-13 17:34:59 +0000 (Wed, 13 Nov 2013) Log Message: ----------- Add standard banner 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-11-13 17:33:49 UTC (rev 7543) +++ branches/BIGDATA_RELEASE_1_3_0/bigdata-jini/src/test/com/bigdata/journal/jini/ha/TestHA3ChangeLeader.java 2013-11-13 17:34:59 UTC (rev 7544) @@ -1,3 +1,26 @@ +/** + +Copyright (C) SYSTAP, LLC 2006-2013. All rights reserved. + +Contact: + SYSTAP, LLC + 4501 Tower Road + Greensboro, NC 27410 + lic...@bi... + +This program is free software; you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation; version 2 of the License. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program; if not, write to the Free Software +Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +*/ package com.bigdata.journal.jini.ha; import java.util.concurrent.TimeUnit; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
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. |
From: <tho...@us...> - 2014-02-17 15:40:50
|
Revision: 7848 http://bigdata.svn.sourceforge.net/bigdata/?rev=7848&view=rev Author: thompsonbry Date: 2014-02-17 15:40:41 +0000 (Mon, 17 Feb 2014) Log Message: ----------- license file header. 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 2014-02-13 23:42:11 UTC (rev 7847) +++ branches/BIGDATA_RELEASE_1_3_0/bigdata-jini/src/test/com/bigdata/journal/jini/ha/TestHA3ChangeLeader.java 2014-02-17 15:40:41 UTC (rev 7848) @@ -1,3 +1,26 @@ +/** + +Copyright (C) SYSTAP, LLC 2006-2007. All rights reserved. + +Contact: + SYSTAP, LLC + 4501 Tower Road + Greensboro, NC 27410 + lic...@bi... + +This program is free software; you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation; version 2 of the License. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program; if not, write to the Free Software +Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +*/ package com.bigdata.journal.jini.ha; import java.util.Random; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |