diff options
Diffstat (limited to 'unittests')
-rw-r--r-- | unittests/Makefile | 7 | ||||
-rw-r--r-- | unittests/TestMain.cpp | 15 |
2 files changed, 0 insertions, 22 deletions
diff --git a/unittests/Makefile b/unittests/Makefile index b743838b86..6f4dae1055 100644 --- a/unittests/Makefile +++ b/unittests/Makefile @@ -9,13 +9,6 @@ LEVEL = .. -include $(LEVEL)/Makefile.config - -LIBRARYNAME = UnitTestMain -BUILD_ARCHIVE = 1 -CPP.Flags += -I$(LLVM_SRC_ROOT)/utils/unittest/googletest/include -CPP.Flags += -Wno-variadic-macros - PARALLEL_DIRS = ADT ExecutionEngine Support VMCore include $(LEVEL)/Makefile.common diff --git a/unittests/TestMain.cpp b/unittests/TestMain.cpp deleted file mode 100644 index 095076b23e..0000000000 --- a/unittests/TestMain.cpp +++ /dev/null @@ -1,15 +0,0 @@ -//===--- unittests/TestMain.cpp - unittest driver -------------------------===// -// -// The LLVM Compiler Infrastructure -// -// This file is distributed under the University of Illinois Open Source -// License. See LICENSE.TXT for details. -// -//===----------------------------------------------------------------------===// - -#include "gtest/gtest.h" - -int main(int argc, char **argv) { - testing::InitGoogleTest(&argc, argv); - return RUN_ALL_TESTS(); -} |