[test-suite] r192485 - [projects/test-suite] Fix RUNSAFELY make variable definition.

Jack Carter jack.carter at imgtec.com
Fri Oct 11 12:33:58 PDT 2013


Author: jacksprat
Date: Fri Oct 11 14:33:58 2013
New Revision: 192485

URL: http://llvm.org/viewvc/llvm-project?rev=192485&view=rev
Log:
[projects/test-suite] Fix RUNSAFELY make variable definition.

 To allow the RUNUNDER script to be run with parameters, the
 the definition of RUNSAFELY needs to quote the interpolation
 of RUNUNDER.

Patch by Doug Gilmore

Modified:
    test-suite/trunk/Makefile.programs

Modified: test-suite/trunk/Makefile.programs
URL: http://llvm.org/viewvc/llvm-project/test-suite/trunk/Makefile.programs?rev=192485&r1=192484&r2=192485&view=diff
==============================================================================
--- test-suite/trunk/Makefile.programs (original)
+++ test-suite/trunk/Makefile.programs Fri Oct 11 14:33:58 2013
@@ -111,7 +111,7 @@ RUNSAFELY := $(RUNSAFELY) -rp "$(REMOTE_
 endif
 
 ifdef RUNUNDER
-RUNSAFELY := $(RUNSAFELY) -u $(RUNUNDER)
+RUNSAFELY := $(RUNSAFELY) -u "$(RUNUNDER)"
 ifdef EXECUTION_ENVIRONMENT_OVERRIDES
 $(error "cannot use both RUNUNDER and EXECUTION_ENVIRONMENT_OVERRIDES")
 endif





More information about the llvm-commits mailing list