[llvm-commits] [test-suite] r165337 - /test-suite/trunk/MultiSource/Benchmarks/Makefile

Michael Gottesman mgottesman at apple.com
Fri Oct 5 14:46:54 PDT 2012


Author: mgottesman
Date: Fri Oct  5 16:46:54 2012
New Revision: 165337

URL: http://llvm.org/viewvc/llvm-project?rev=165337&view=rev
Log:
MultiSource/Benchmarks/TSVC was still being run on Darwin despite my fix from yesterday since we were not including Makefile.config properly
like in SingleSource/UnitTests/Makefile

Modified:
    test-suite/trunk/MultiSource/Benchmarks/Makefile

Modified: test-suite/trunk/MultiSource/Benchmarks/Makefile
URL: http://llvm.org/viewvc/llvm-project/test-suite/trunk/MultiSource/Benchmarks/Makefile?rev=165337&r1=165336&r2=165337&view=diff
==============================================================================
--- test-suite/trunk/MultiSource/Benchmarks/Makefile (original)
+++ test-suite/trunk/MultiSource/Benchmarks/Makefile Fri Oct  5 16:46:54 2012
@@ -1,6 +1,9 @@
 # MultiSource/Benchmarks Makefile:  Build all subdirectories automatically
 
 LEVEL = ../..
+
+include $(LEVEL)/Makefile.config
+
 # Disabled: OptimizerEval.
 PARALLEL_DIRS := Fhourstones Fhourstones-3.1 \
                  McCat Olden Ptrdist llubenchmark \
@@ -22,4 +25,4 @@
 		mafft
 endif
 
-include $(LEVEL)/Makefile.programs
+include $(LEVEL)/MultiSource/Makefile.multisrc





More information about the llvm-commits mailing list