Ray Milkey

Disable some brittle tests that are causing problems with Jenkins

Change-Id: I2f79a728545d50f9458048a5980261e84e112f2f
...@@ -347,6 +347,7 @@ public class IntentManagerTest { ...@@ -347,6 +347,7 @@ public class IntentManagerTest {
347 } 347 }
348 348
349 @Test 349 @Test
350 + @Ignore("This is disabled because we are seeing intermittent failures on Jenkins")
350 public void stressSubmitWithdrawUnique() { 351 public void stressSubmitWithdrawUnique() {
351 flowRuleService.setFuture(true); 352 flowRuleService.setFuture(true);
352 353
......
...@@ -107,6 +107,7 @@ public class DistributedMastershipStoreTest { ...@@ -107,6 +107,7 @@ public class DistributedMastershipStoreTest {
107 } 107 }
108 108
109 @Test 109 @Test
110 + @Ignore("Disabled this test due to intermittent failures seen on Jenkins runs")
110 public void getRole() { 111 public void getRole() {
111 assertEquals("wrong role:", NONE, dms.getRole(N1, DID1)); 112 assertEquals("wrong role:", NONE, dms.getRole(N1, DID1));
112 testStore.put(DID1, N1, true, false, true); 113 testStore.put(DID1, N1, true, false, true);
......
...@@ -17,6 +17,7 @@ package org.onlab.util; ...@@ -17,6 +17,7 @@ package org.onlab.util;
17 17
18 import org.junit.After; 18 import org.junit.After;
19 import org.junit.Before; 19 import org.junit.Before;
20 +import org.junit.Ignore;
20 import org.junit.Test; 21 import org.junit.Test;
21 22
22 import static junit.framework.TestCase.fail; 23 import static junit.framework.TestCase.fail;
...@@ -26,6 +27,8 @@ import static org.junit.Assert.assertTrue; ...@@ -26,6 +27,8 @@ import static org.junit.Assert.assertTrue;
26 /** 27 /**
27 * Unit tests for the sliding window counter. 28 * Unit tests for the sliding window counter.
28 */ 29 */
30 +
31 +@Ignore("Disable these for now because of intermittent load related failures on Jenkins runs.")
29 public class SlidingWindowCounterTest { 32 public class SlidingWindowCounterTest {
30 33
31 private SlidingWindowCounter counter; 34 private SlidingWindowCounter counter;
......