Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1304)

Unified Diff: tests/gclient_scm_test.py

Issue 6594038: Accept output from even more Git versions in tests. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/depot_tools
Patch Set: whitespace Created 9 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/gclient_scm_test.py
diff --git a/tests/gclient_scm_test.py b/tests/gclient_scm_test.py
index b864a85100209d3fe36895a1e97b76eb85a745f6..f93fb74f17fa5b65799535c28cbcc88260fddff6 100755
--- a/tests/gclient_scm_test.py
+++ b/tests/gclient_scm_test.py
@@ -19,6 +19,7 @@ import __builtin__
from super_mox import mox, StdoutCheck, TestCaseUtils, SuperMoxTestBase
import logging
+import re
import sys
import gclient_scm
@@ -738,25 +739,20 @@ from :3
'069c602044c5388d2d15c3f875b057c852003458')
finally:
rmtree(root_dir)
- msg1 = (
+ msg_re = re.compile(
"\n_____ foo at refs/heads/master\n\n"
"________ running 'git clone -b master --verbose %s %s' in '%s'\n"
- "Initialized empty Git repository in %s\n") % (
- join(self.root_dir, '.', '.git'),
- join(root_dir, 'foo'),
- root_dir,
- join(gclient_scm.os.path.realpath(root_dir), 'foo', '.git') + '/')
- msg2 = (
- "\n_____ foo at refs/heads/master\n\n"
- "________ running 'git clone -b master --verbose %s %s' in '%s'\n"
- "Cloning into %s...\ndone.\n") % (
- join(self.root_dir, '.', '.git'),
- join(root_dir, 'foo'),
- root_dir,
- join(gclient_scm.os.path.realpath(root_dir), 'foo'))
+ "(Initialized empty Git repository in "
+ "|Cloning into )(%s|%s)(...\ndone.)?\n" % (
+ re.escape(join(self.root_dir, '.', '.git')),
+ re.escape(join(root_dir, 'foo')),
+ re.escape(root_dir),
+ re.escape(join(gclient_scm.os.path.realpath(root_dir),
+ 'foo', '.git')) + '/',
+ re.escape(join(root_dir, 'foo'))))
out = sys.stdout.getvalue()
sys.stdout.close()
- self.assertTrue(out in (msg1, msg2), (out, msg1, msg2))
+ self.assertTrue(re.match(msg_re, out))
evanm 2011/02/28 22:35:11 Might be better to just set the --quiet flag and r
def testUpdateUpdate(self):
if not self.enabled:
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698