[test-suite] r263901 - lit: Add space between "run under" script and its command line arguments.

Simon Atanasyan via llvm-commits llvm-commits at lists.llvm.org
Sun Mar 20 07:26:30 PDT 2016


Author: atanasyan
Date: Sun Mar 20 09:26:30 2016
New Revision: 263901

URL: http://llvm.org/viewvc/llvm-project?rev=263901&view=rev
Log:
lit: Add space between "run under" script and its command line arguments.

Modified:
    test-suite/trunk/litsupport/run_under.py

Modified: test-suite/trunk/litsupport/run_under.py
URL: http://llvm.org/viewvc/llvm-project/test-suite/trunk/litsupport/run_under.py?rev=263901&r1=263900&r2=263901&view=diff
==============================================================================
--- test-suite/trunk/litsupport/run_under.py (original)
+++ test-suite/trunk/litsupport/run_under.py Sun Mar 20 09:26:30 2016
@@ -3,7 +3,7 @@ import testplan
 
 
 def mutateCommandLine(context, commandline):
-    return context.config.run_under + commandline
+    return context.config.run_under + " " + commandline
 
 
 def mutatePlan(context, plan):




More information about the llvm-commits mailing list