[llvm-commits] CVS: llvm/test/Programs/Makefile.programs

Chris Lattner lattner at cs.uiuc.edu
Mon Jul 21 15:09:00 PDT 2003


Changes in directory llvm/test/Programs:

Makefile.programs updated: 1.71 -> 1.72

---
Log message:

Remove more RunSafely wierd stuff


---
Diffs of the changes:

Index: llvm/test/Programs/Makefile.programs
diff -u llvm/test/Programs/Makefile.programs:1.71 llvm/test/Programs/Makefile.programs:1.72
--- llvm/test/Programs/Makefile.programs:1.71	Mon Jul 21 15:02:06 2003
+++ llvm/test/Programs/Makefile.programs	Mon Jul 21 15:08:38 2003
@@ -79,8 +79,6 @@
 # continue to be run.
 RUNSAFELY := $(PROGDIR)/RunSafely.sh $(RUNTIMELIMIT)
 
-RUNSAFELY_TRACE_EXECS := $(RUNSAFELY)
-
 ifndef STDIN_FILENAME
 STDIN_FILENAME := /dev/null
 endif
@@ -363,15 +361,9 @@
 	@if test \! -f $@.exitok; then echo "TEST: $* FAILED!"; rm -f $@; fi
 endif
 
-ifndef GET_LLVM_TRACE
 $(PROGRAMS_TO_TEST:%=Output/%.out-llc): \
 Output/%.out-llc: Output/%.llc
 	-$(RUNSAFELY) $(STDIN_FILENAME) $@ $< $(RUN_OPTIONS)
-else
-$(PROGRAMS_TO_TEST:%=Output/%.out-llc): \
-Output/%.out-llc: Output/%.llc
-	-$(RUNSAFELY_TRACE_EXECS) $(STDIN_FILENAME) $@ $< $(RUN_OPTIONS)
-endif
 
 $(PROGRAMS_TO_TEST:%=Output/%.out-cbe): \
 Output/%.out-cbe: Output/%.cbe
@@ -379,7 +371,7 @@
 
 $(PROGRAMS_TO_TEST:%=Output/%.out-tracing): \
 Output/%.out-tracing: Output/%.trace
-	-$(RUNSAFELY_TRACE_EXECS) $(STDIN_FILENAME) $@ $< $(RUN_OPTIONS)
+	-$(RUNSAFELY) $(STDIN_FILENAME) $@ $< $(RUN_OPTIONS)
 
 $(PROGRAMS_TO_TEST:%=Output/%.performance): \
 Output/%.performance: Output/%.out-llc.time Output/%.out-tracing.time





More information about the llvm-commits mailing list