1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-22 02:33:06 +01:00

Make a stub version of MITests, instead of reverting.

Lit tends to find out-of-date unittests in the build tree.

FIXME: It may be reverted several days after.
llvm-svn: 261194
This commit is contained in:
NAKAMURA Takumi 2016-02-18 07:37:17 +00:00
parent 32f3e081a8
commit 509933800e
3 changed files with 14 additions and 0 deletions

View File

@ -22,6 +22,7 @@ add_subdirectory(IR)
add_subdirectory(LineEditor)
add_subdirectory(Linker)
add_subdirectory(MC)
add_subdirectory(MI)
add_subdirectory(Option)
add_subdirectory(ProfileData)
add_subdirectory(Support)

View File

@ -0,0 +1,7 @@
set(LLVM_LINK_COMPONENTS
Support
)
add_llvm_unittest(MITests
LiveIntervalTest.cpp
)

View File

@ -0,0 +1,6 @@
#include "gtest/gtest.h"
// FIXME: It may be removed when practical tests came.
TEST(LiveIntervalTest, DummyStub) {
EXPECT_TRUE(true);
}