Chromium Code Reviews| Index: tests/gclient_smoketest.py |
| diff --git a/tests/gclient_smoketest.py b/tests/gclient_smoketest.py |
| index 388d2a83a5ef7c256584beced359496e8d48107d..cd2e0ec3b163de236c2df401d8e5c8c6e7b9a1a2 100755 |
| --- a/tests/gclient_smoketest.py |
| +++ b/tests/gclient_smoketest.py |
| @@ -1582,6 +1582,7 @@ class BlinkDEPSTransitionSmokeTest(GClientSmokeBase): |
| # But not the .git folder |
| self.assertFalse(os.path.exists(join(self.blink, '.git'))) |
| + @unittest.skip("flaky") |
|
Adrian Kuegel
2015/04/21 15:04:22
nit: use ' instead of " to be consistent with the
|
| def testBlinkDEPSChangeUsingGclient(self): |
| """Checks that {src,blink} repos are consistent when syncing going back and |
| forth using gclient sync src@revision.""" |
| @@ -1607,6 +1608,7 @@ class BlinkDEPSTransitionSmokeTest(GClientSmokeBase): |
| self.CheckStatusPostMergePoint() |
| + @unittest.skip("flaky") |
| def testBlinkDEPSChangeUsingGit(self): |
| """Like testBlinkDEPSChangeUsingGclient, but move the main project using |
| directly git and not gclient sync.""" |
| @@ -1639,6 +1641,7 @@ class BlinkDEPSTransitionSmokeTest(GClientSmokeBase): |
| self.CheckStatusPostMergePoint() |
| + @unittest.skip("flaky") |
| def testBlinkLocalBranchesArePreserved(self): |
| """Checks that the state of local git branches are effectively preserved |
| when going back and forth.""" |