From: Argyrios Kyrtzidis Date: Sat, 16 Aug 2008 20:53:59 +0000 (+0000) Subject: Move the C++ Sema tests into a separate SemaCXX directory. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5e8840c7a6840c9dd67dc3b8ca0ab965db439e32;p=clang Move the C++ Sema tests into a separate SemaCXX directory. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@54853 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/Makefile b/test/Makefile index 43ff548234..8164f2ee2c 100644 --- a/test/Makefile +++ b/test/Makefile @@ -1,7 +1,7 @@ LEVEL = ../../.. include $(LEVEL)/Makefile.common -TESTDIRS = CodeGen Lexer Preprocessor Parser Sema SemaObjC Analysis Serialization Rewriter +TESTDIRS = CodeGen Lexer Preprocessor Parser Sema SemaCXX SemaObjC Analysis Serialization Rewriter # Only run rewriter tests on darwin. ifeq ($(OS),Darwin) diff --git a/test/Sema/cxx-class.cpp b/test/SemaCXX/class.cpp similarity index 100% rename from test/Sema/cxx-class.cpp rename to test/SemaCXX/class.cpp diff --git a/test/Sema/cxx-namespace.cpp b/test/SemaCXX/namespace.cpp similarity index 100% rename from test/Sema/cxx-namespace.cpp rename to test/SemaCXX/namespace.cpp diff --git a/test/Sema/cxx-references.cpp b/test/SemaCXX/references.cpp similarity index 100% rename from test/Sema/cxx-references.cpp rename to test/SemaCXX/references.cpp diff --git a/test/Sema/cxx-this.cpp b/test/SemaCXX/this.cpp similarity index 100% rename from test/Sema/cxx-this.cpp rename to test/SemaCXX/this.cpp diff --git a/test/Sema/cxx-wchar_t.cpp b/test/SemaCXX/wchar_t.cpp similarity index 100% rename from test/Sema/cxx-wchar_t.cpp rename to test/SemaCXX/wchar_t.cpp