mirror of
https://github.com/RPCS3/llvm.git
synced 2024-12-14 07:31:53 +00: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. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@261194 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
07e5326d7d
commit
20dee1f1c0
@ -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