diff options
author | Anders Carlsson <andersca@mac.com> | 2008-08-23 21:03:10 +0000 |
---|---|---|
committer | Anders Carlsson <andersca@mac.com> | 2008-08-23 21:03:10 +0000 |
commit | a3345a5d73157126beaa7e020b19c6d8d3f522b0 (patch) | |
tree | 5042db4cd40e715c5bbef1d65fc9ad6b2e6ed320 | |
parent | f93f56a28e4c240dfafa7be7263e9ac91f55cf7c (diff) | |
download | bcm5719-llvm-a3345a5d73157126beaa7e020b19c6d8d3f522b0.tar.gz bcm5719-llvm-a3345a5d73157126beaa7e020b19c6d8d3f522b0.zip |
Handle Objective-C++ tests.
llvm-svn: 55254
-rw-r--r-- | clang/test/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/Makefile b/clang/test/Makefile index ea4ef6e030f..d0532e30b60 100644 --- a/clang/test/Makefile +++ b/clang/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' \)))) +TESTS := $(addprefix Output/, $(addsuffix .testresults, $(shell find $(TESTDIRS) \( -name '*.c' -or -name '*.cpp' -or -name '*.m' -or -name '*.mm' \)))) Output/%.testresults: % @ $(PROGRESS) |