diff options
author | Daniel Dunbar <daniel@zuster.org> | 2008-12-01 19:23:47 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2008-12-01 19:23:47 +0000 |
commit | 5bea06ad9e1e73937870e070197cb48e0c2eea87 (patch) | |
tree | cb936aaef3e156853bb295f32012f02ecabf8297 /test/Makefile | |
parent | c1571453de3db2b26c15cc13115fac4ece84aa7c (diff) |
Add test case for __ASSEMBLER__ definition.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@60363 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Makefile')
-rw-r--r-- | test/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Makefile b/test/Makefile index 5ef0e02402..81a1d790fc 100644 --- a/test/Makefile +++ b/test/Makefile @@ -19,7 +19,7 @@ REPORTFAIL = (echo; echo '----' $< 'failed ----') DONE = echo endif -TESTS := $(addprefix Output/, $(addsuffix .testresults, $(shell find $(TESTDIRS) \( -name '*.c' -or -name '*.cpp' -or -name '*.m' -or -name '*.mm' \) | grep -v "Output/"))) +TESTS := $(addprefix Output/, $(addsuffix .testresults, $(shell find $(TESTDIRS) \( -name '*.c' -or -name '*.cpp' -or -name '*.m' -or -name '*.mm' -or -name '*.S' \) | grep -v "Output/"))) Output/%.testresults: % @ $(PROGRESS) @ PATH=$(ToolDir):$(LLVM_SRC_ROOT)/test/Scripts:$$PATH VG=$(VG) $(PROJ_SRC_DIR)/TestRunner.sh $< > $@ || $(REPORTFAIL) |