[Lldb-commits] [lldb] bfea1df - [lldb/Test] Fix unittest name
Jonas Devlieghere via lldb-commits
lldb-commits at lists.llvm.org
Fri Jun 12 14:01:21 PDT 2020
Author: Jonas Devlieghere
Date: 2020-06-12T14:01:14-07:00
New Revision: bfea1df9f01393bac6d2ce6a45d3b764b01e9e9e
URL: https://github.com/llvm/llvm-project/commit/bfea1df9f01393bac6d2ce6a45d3b764b01e9e9e
DIFF: https://github.com/llvm/llvm-project/commit/bfea1df9f01393bac6d2ce6a45d3b764b01e9e9e.diff
LOG: [lldb/Test] Fix unittest name
Lit looks for the Tests prefix in the unit test name.
Added:
Modified:
lldb/unittests/Process/CMakeLists.txt
lldb/unittests/Thread/CMakeLists.txt
Removed:
################################################################################
diff --git a/lldb/unittests/Process/CMakeLists.txt b/lldb/unittests/Process/CMakeLists.txt
index 50d0e75167ea..e068908d09fb 100644
--- a/lldb/unittests/Process/CMakeLists.txt
+++ b/lldb/unittests/Process/CMakeLists.txt
@@ -5,7 +5,7 @@ if (CMAKE_SYSTEM_NAME MATCHES "Linux|Android")
endif()
add_subdirectory(minidump)
-add_lldb_unittest(ProcessEventDataTest
+add_lldb_unittest(ProcessEventDataTests
ProcessEventDataTest.cpp
LINK_LIBS
diff --git a/lldb/unittests/Thread/CMakeLists.txt b/lldb/unittests/Thread/CMakeLists.txt
index aa5b777f4b2e..d6e365adac5d 100644
--- a/lldb/unittests/Thread/CMakeLists.txt
+++ b/lldb/unittests/Thread/CMakeLists.txt
@@ -1,4 +1,4 @@
-add_lldb_unittest(ThreadTest
+add_lldb_unittest(ThreadTests
ThreadTest.cpp
LINK_LIBS
More information about the lldb-commits
mailing list