diff options
author | Eli Friedman <eli.friedman@gmail.com> | 2008-06-07 23:20:33 +0000 |
---|---|---|
committer | Eli Friedman <eli.friedman@gmail.com> | 2008-06-07 23:20:33 +0000 |
commit | 69d721e07144a9808304709cc7b4ef216a70ebb1 (patch) | |
tree | 3109e36f289d160d03025ab0ebdae9af0ff41e3f /clang | |
parent | 7e4f41ef3fee1085b7095bf852d5e9f009aa5ccc (diff) | |
download | bcm5719-llvm-69d721e07144a9808304709cc7b4ef216a70ebb1.tar.gz bcm5719-llvm-69d721e07144a9808304709cc7b4ef216a70ebb1.zip |
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.)
llvm-svn: 52083
Diffstat (limited to 'clang')
-rw-r--r-- | clang/test/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/test/Makefile b/clang/test/Makefile index 35f9025934a..039f150c09c 100644 --- a/clang/test/Makefile +++ b/clang/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 |