[llvm-commits] CVS: llvm/test/Programs/Makefile.programs
Brian Gaeke
gaeke at cs.uiuc.edu
Mon Jul 21 16:58:01 PDT 2003
Changes in directory llvm/test/Programs:
Makefile.programs updated: 1.72 -> 1.73
---
Log message:
Fix a couple of typos.
Turn off TRACINGDIFFS, which could never have worked as written in the
manner intended, and which was making all the tests fail with
GET_LLVM_TRACE turned on.
---
Diffs of the changes:
Index: llvm/test/Programs/Makefile.programs
diff -u llvm/test/Programs/Makefile.programs:1.72 llvm/test/Programs/Makefile.programs:1.73
--- llvm/test/Programs/Makefile.programs:1.72 Mon Jul 21 15:08:38 2003
+++ llvm/test/Programs/Makefile.programs Mon Jul 21 16:56:58 2003
@@ -101,7 +101,7 @@
LLCBYTECODE := $(addsuffix .llc.bc, $(PREFIXED_PROGRAMS_TO_TEST))
TRACINGCODEGEN := $(addsuffix .run.bc, $(PREFIXED_PROGRAMS_TO_TEST))
TRACINGLLCCODEGEN := $(addsuffix .run.s, $(PREFIXED_PROGRAMS_TO_TEST))
-TRACINGEXCEUTABLE := $(addsuffix .trace, $(PREFIXED_PROGRAMS_TO_TEST))
+TRACINGEXECUTABLE := $(addsuffix .trace, $(PREFIXED_PROGRAMS_TO_TEST))
# Output produced by programs run
GCCOUTPUT := $(addsuffix .ll, $(addprefix Output/,$basename $(Source)))
@@ -183,8 +183,11 @@
ifdef GET_LLVM_TRACE
all:: $(TRACINGCODEGEN)
all:: $(TRACINGLLCCODEGEN)
-all:: $(TRACINGEXCEUTABLE)
-all:: $(TRACINGDIFFS)
+all:: $(TRACINGEXECUTABLE)
+#all:: $(TRACINGDIFFS)
+# TRACINGDIFFS does not work - it wants to diff llc against tracing,
+# but DiffOutput always diffs against native, and GET_LLVM_TRACE disables
+# native.
all:: $(GETTIMECOMPARISON)
DISABLE_CBE = 1
@@ -389,7 +392,7 @@
$(PROGRAMS_TO_TEST:%=Output/%.diff-lli): \
Output/%.diff-lli: Output/%.out-nat Output/%.out-lli
- -$(DIFFPROG) lli $* $(HIDEDIFF)
+ -$(DIFFPROG) lli $* $(HIDEDIFF)
$(PROGRAMS_TO_TEST:%=Output/%.diff-jit): \
Output/%.diff-jit: Output/%.out-nat Output/%.out-jit
@@ -405,7 +408,7 @@
$(PROGRAMS_TO_TEST:%=Output/%.diff-tracing): \
Output/%.diff-tracing: Output/%.out-llc Output/%.out-tracing
- $(DIFFPROG) tracing $* $(HIDEDIFF)
+ -$(DIFFPROG) tracing $* $(HIDEDIFF)
ifndef DISABLE_DIFFS
$(PROGRAMS_TO_TEST:%=Output/%.exe-lli): \
More information about the llvm-commits
mailing list