|
85 | 85 | import java.util.concurrent.TimeoutException; |
86 | 86 | import org.junit.AfterClass; |
87 | 87 | import org.junit.BeforeClass; |
| 88 | +import org.junit.Ignore; |
88 | 89 | import org.junit.Rule; |
89 | 90 | import org.junit.Test; |
90 | 91 | import org.junit.rules.Timeout; |
@@ -1343,6 +1344,7 @@ public void testListImagesWithFilter() { |
1343 | 1344 | assertTrue(count > 0); |
1344 | 1345 | } |
1345 | 1346 |
|
| 1347 | + @Ignore("Avoid leaving orphan networks when interrupted: see #2118") |
1346 | 1348 | @Test |
1347 | 1349 | public void testCreateAndGetNetwork() throws InterruptedException, TimeoutException { |
1348 | 1350 | String name = BASE_RESOURCE_NAME + "create-and-get-network"; |
@@ -1376,6 +1378,7 @@ public void testCreateAndGetNetwork() throws InterruptedException, TimeoutExcept |
1376 | 1378 | assertNull(compute.getNetwork(name)); |
1377 | 1379 | } |
1378 | 1380 |
|
| 1381 | + @Ignore("Avoid leaving orphan networks when interrupted: see #2118") |
1379 | 1382 | @Test |
1380 | 1383 | public void testListNetworks() throws InterruptedException, TimeoutException { |
1381 | 1384 | String name = BASE_RESOURCE_NAME + "list-network"; |
@@ -1424,6 +1427,7 @@ public void testListNetworks() throws InterruptedException, TimeoutException { |
1424 | 1427 | assertNull(compute.getNetwork(name)); |
1425 | 1428 | } |
1426 | 1429 |
|
| 1430 | + @Ignore("Avoid leaving orphan networks when interrupted: see #2118") |
1427 | 1431 | @Test |
1428 | 1432 | public void testCreateNetworkAndSubnetwork() throws InterruptedException, TimeoutException { |
1429 | 1433 | String networkName = BASE_RESOURCE_NAME + "create-subnetwork-network"; |
@@ -1511,6 +1515,7 @@ public void testCreateNetworkAndSubnetwork() throws InterruptedException, Timeou |
1511 | 1515 | assertNull(compute.getNetwork(networkName)); |
1512 | 1516 | } |
1513 | 1517 |
|
| 1518 | + @Ignore("Avoid leaving orphan networks when interrupted: see #2118") |
1514 | 1519 | @Test |
1515 | 1520 | public void testAggregatedListSubnetworks() throws InterruptedException, TimeoutException { |
1516 | 1521 | String networkName = BASE_RESOURCE_NAME + "list-subnetwork-network"; |
|
0 commit comments