[LNT] r263463 - [test-suite] Fix syntax error
James Molloy via llvm-commits
llvm-commits at lists.llvm.org
Mon Mar 14 11:37:20 PDT 2016
Author: jamesm
Date: Mon Mar 14 13:37:20 2016
New Revision: 263463
URL: http://llvm.org/viewvc/llvm-project?rev=263463&view=rev
Log:
[test-suite] Fix syntax error
I'm pushing this fix because it's obviously broken, but I need to investigate why the tests didn't go red.
Modified:
lnt/trunk/lnt/tests/test_suite.py
Modified: lnt/trunk/lnt/tests/test_suite.py
URL: http://llvm.org/viewvc/llvm-project/lnt/trunk/lnt/tests/test_suite.py?rev=263463&r1=263462&r2=263463&view=diff
==============================================================================
--- lnt/trunk/lnt/tests/test_suite.py (original)
+++ lnt/trunk/lnt/tests/test_suite.py Mon Mar 14 13:37:20 2016
@@ -430,7 +430,7 @@ class TestSuiteTest(BuiltinTest):
if self.opts.only_test:
components = [path] + self.opts.only_test[0]
if self.opts.only_test[1]:
- target = self.opts.only_test[1]:
+ target = self.opts.only_test[1]
subdir = os.path.join(*components)
note('Building...')
More information about the llvm-commits
mailing list