From 69d721e07144a9808304709cc7b4ef216a70ebb1 Mon Sep 17 00:00:00 2001 From: Eli Friedman Date: Sat, 7 Jun 2008 23:20:33 +0000 Subject: [PATCH] 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 --- clang/test/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/clang/test/Makefile b/clang/test/Makefile index 35f9025934a2..039f150c09c0 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