aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEli Friedman <eli.friedman@gmail.com>2008-06-07 23:20:33 +0000
committerEli Friedman <eli.friedman@gmail.com>2008-06-07 23:20:33 +0000
commit76277254fc1bfa632821d32007d04bf709d2fd39 (patch)
tree83ee644eb4c14df579cb939cd088fd26bf7d3593
parent74a71732f515ae53f5bb9b7a169d7832b49eff33 (diff)
Enable the rewriter tests on all platforms; there don't appear to
be any regressions from this on my machine, but please let me know if you run into issues. (The idea here is that it's better to run all tests on all platforms if at all possible.) git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@52083 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--test/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/Makefile b/test/Makefile
index 35f9025934..039f150c09 100644
--- a/test/Makefile
+++ b/test/Makefile
@@ -1,11 +1,11 @@
LEVEL = ../../..
include $(LEVEL)/Makefile.common
-TESTDIRS = CodeGen Lexer Preprocessor Parser Sema Analysis Serialization
+TESTDIRS = CodeGen Lexer Preprocessor Parser Sema Analysis Serialization Rewriter
# Only run rewriter tests on darwin.
ifeq ($(OS),Darwin)
-TESTDIRS += Rewriter Analysis-Apple
+TESTDIRS += Analysis-Apple
endif
ifdef VERBOSE