projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1b5710a
)
C tests are run via Makefile.singlesrc so don't run them twice.
author
Vikram S. Adve
<vadve@cs.uiuc.edu>
Mon, 23 Sep 2002 14:23:15 +0000
(14:23 +0000)
committer
Vikram S. Adve
<vadve@cs.uiuc.edu>
Mon, 23 Sep 2002 14:23:15 +0000
(14:23 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3885
91177308
-0d34-0410-b5e6-
96231b3b80d8
test/LLC/Makefile
patch
|
blob
|
history
diff --git
a/test/LLC/Makefile
b/test/LLC/Makefile
index 0aecc83090161f48b77d689dbc1d8dd8d81a466e..b48c24ad60fcf1d881b409f428e94238db119e3f 100644
(file)
--- a/
test/LLC/Makefile
+++ b/
test/LLC/Makefile
@@
-5,7
+5,9
@@
LEVEL = ../../..
include $(LEVEL)/test/Programs/SingleSource/Makefile.singlesrc
-TESTS := $(wildcard *.ll) $(wildcard *.c)
+# Only .ll tests here. C tests are run via Makefile.singlesrc above.
+#
+TESTS := $(wildcard *.ll)
all:: $(addprefix Output/, $(filter-out %.c, $(TESTS:%.ll=%.ts)))