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

Unified Diff: test/cctest/testcfg.py

Issue 13638013: Modifications to tests and test tools for Native Client V8. (Closed) Base URL: git://github.com/v8/v8.git@master
Patch Set: Disable a test Created 7 years, 8 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
Index: test/cctest/testcfg.py
diff --git a/test/cctest/testcfg.py b/test/cctest/testcfg.py
index 86dc740576ab172e8dc74bf6f12b92cbf7beed4a..4c2cd231c82155799f24bd2c34ab36df7ff1ffdd 100644
--- a/test/cctest/testcfg.py
+++ b/test/cctest/testcfg.py
@@ -57,6 +57,10 @@ class CcTestSuite(testsuite.TestSuite):
return []
tests = []
for test_desc in output.stdout.strip().split():
+ if test_desc.find('<') < 0:
+ # Native Client output can contain a few non-test arguments
+ # before the tests. Skip these.
+ continue
raw_test, dependency = test_desc.split('<')
if dependency != '':
dependency = raw_test.split('/')[0] + '/' + dependency

Powered by Google App Engine
This is Rietveld 408576698