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:
parent
32f3e081a8
commit
509933800e
@ -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)
|
||||
|
7
unittests/MI/CMakeLists.txt
Normal file
7
unittests/MI/CMakeLists.txt
Normal file
@ -0,0 +1,7 @@
|
||||
set(LLVM_LINK_COMPONENTS
|
||||
Support
|
||||
)
|
||||
|
||||
add_llvm_unittest(MITests
|
||||
LiveIntervalTest.cpp
|
||||
)
|
6
unittests/MI/LiveIntervalTest.cpp
Normal file
6
unittests/MI/LiveIntervalTest.cpp
Normal file
@ -0,0 +1,6 @@
|
||||
#include "gtest/gtest.h"
|
||||
|
||||
// FIXME: It may be removed when practical tests came.
|
||||
TEST(LiveIntervalTest, DummyStub) {
|
||||
EXPECT_TRUE(true);
|
||||
}
|
Loading…
Reference in New Issue
Block a user