[llvm-commits] [test-suite] r106077 - /test-suite/trunk/Makefile.programs

Daniel Dunbar daniel at zuster.org
Tue Jun 15 18:53:42 PDT 2010


Author: ddunbar
Date: Tue Jun 15 20:53:42 2010
New Revision: 106077

URL: http://llvm.org/viewvc/llvm-project?rev=106077&view=rev
Log:
Sigh, fix a shell quoting issue when calling DiffOutput under RunToolSafely.

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=106077&r1=106076&r2=106077&view=diff
==============================================================================
--- test-suite/trunk/Makefile.programs (original)
+++ test-suite/trunk/Makefile.programs Tue Jun 15 20:53:42 2010
@@ -69,7 +69,7 @@
 # loop on some inputs, which blocks testing some historical revisions. We can
 # remove this once we build our own test tools.
 DIFFPROG := $(PROGDIR)/RunToolSafely.sh 60 \
-  $(PROGDIR)/DiffOutput.sh "$(LLVMTOOLCURRENT)/fpcmp $(TOLERANCEOPT)"
+  $(PROGDIR)/DiffOutput.sh "\"$(LLVMTOOLCURRENT)/fpcmp $(TOLERANCEOPT)\""
 
 # RUNTIMELIMIT - The number of seconds we should wait before certain events
 # timeout.  This is overridable on the commandline or in tests makefiles.





More information about the llvm-commits mailing list