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
GitOrigin-RevId: c1857d1d21c3c7ca3027d4e0cfaf3b2257421ca7
diff --git a/unittests/CMakeLists.txt b/unittests/CMakeLists.txt
index e5befce..48a573a 100644
--- a/unittests/CMakeLists.txt
+++ b/unittests/CMakeLists.txt
@@ -22,6 +22,7 @@
 add_subdirectory(LineEditor)
 add_subdirectory(Linker)
 add_subdirectory(MC)
+add_subdirectory(MI)
 add_subdirectory(Option)
 add_subdirectory(ProfileData)
 add_subdirectory(Support)
diff --git a/unittests/MI/CMakeLists.txt b/unittests/MI/CMakeLists.txt
new file mode 100644
index 0000000..e8a7945
--- /dev/null
+++ b/unittests/MI/CMakeLists.txt
@@ -0,0 +1,7 @@
+set(LLVM_LINK_COMPONENTS
+  Support
+  )
+
+add_llvm_unittest(MITests
+  LiveIntervalTest.cpp
+  )
diff --git a/unittests/MI/LiveIntervalTest.cpp b/unittests/MI/LiveIntervalTest.cpp
new file mode 100644
index 0000000..534bd0d
--- /dev/null
+++ b/unittests/MI/LiveIntervalTest.cpp
@@ -0,0 +1,6 @@
+#include "gtest/gtest.h"
+
+// FIXME: It may be removed when practical tests came.
+TEST(LiveIntervalTest, DummyStub) {
+  EXPECT_TRUE(true);
+}