diff options
author | Zhanyong Wan <wan@google.com> | 2011-02-15 21:30:27 +0000 |
---|---|---|
committer | Zhanyong Wan <wan@google.com> | 2011-02-15 21:30:27 +0000 |
commit | bc402abcc9b96d291530aad815fb3504dc59314b (patch) | |
tree | 61d6beb7544436791c9998409d1bb87adfef1619 | |
parent | f81ff04ba3dc6d979507dc0a7083ddc2d7ee3beb (diff) | |
download | bcm5719-llvm-bc402abcc9b96d291530aad815fb3504dc59314b.tar.gz bcm5719-llvm-bc402abcc9b96d291530aad815fb3504dc59314b.zip |
Moves FileManagerTest.cpp to unittests/Basic such that the unit test
directory structure matches the library structure. Reviewed by jyasskin.
llvm-svn: 125600
-rw-r--r-- | clang/unittests/Basic/FileManagerTest.cpp (renamed from clang/unittests/FileManager/FileManagerTest.cpp) | 2 | ||||
-rw-r--r-- | clang/unittests/Basic/Makefile (renamed from clang/unittests/FileManager/Makefile) | 4 | ||||
-rw-r--r-- | clang/unittests/Makefile | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/clang/unittests/FileManager/FileManagerTest.cpp b/clang/unittests/Basic/FileManagerTest.cpp index a7d3df3125d..80727790d03 100644 --- a/clang/unittests/FileManager/FileManagerTest.cpp +++ b/clang/unittests/Basic/FileManagerTest.cpp @@ -1,4 +1,4 @@ -//===- unittests/FileManager/FileMangerTest.cpp ------ FileManger tests ---===// +//===- unittests/Basic/FileMangerTest.cpp ------------ FileManger tests ---===// // // The LLVM Compiler Infrastructure // diff --git a/clang/unittests/FileManager/Makefile b/clang/unittests/Basic/Makefile index 3851aa4f59c..e7ac57cbe19 100644 --- a/clang/unittests/FileManager/Makefile +++ b/clang/unittests/Basic/Makefile @@ -1,4 +1,4 @@ -##===- unittests/FileManager/Makefile ----------------------*- Makefile -*-===## +##===- unittests/Basic/Makefile ----------------------------*- Makefile -*-===## # # The LLVM Compiler Infrastructure # @@ -8,7 +8,7 @@ ##===----------------------------------------------------------------------===## CLANG_LEVEL = ../.. -TESTNAME = FileManager +TESTNAME = Basic LINK_COMPONENTS := core support mc USEDLIBS = clangBasic.a diff --git a/clang/unittests/Makefile b/clang/unittests/Makefile index e8b4d55f3de..951e17e2177 100644 --- a/clang/unittests/Makefile +++ b/clang/unittests/Makefile @@ -14,7 +14,7 @@ ifndef CLANG_LEVEL IS_UNITTEST_LEVEL := 1 CLANG_LEVEL := .. -PARALLEL_DIRS = FileManager Frontend +PARALLEL_DIRS = Basic Frontend endif # CLANG_LEVEL |