[mlir] Improve error message when number of operands and types differ (#118488)
[llvm-project.git] / lldb / unittests / Host / CMakeLists.txt
blob7c09932b39c2ad165461b70f1e0b694bc18e2fae
1 set (FILES
2   AlarmTest.cpp
3   ConnectionFileDescriptorTest.cpp
4   FileActionTest.cpp
5   FileSystemTest.cpp
6   FileTest.cpp
7   HostInfoTest.cpp
8   HostTest.cpp
9   MainLoopTest.cpp
10   NativeProcessProtocolTest.cpp
11   PipeTest.cpp
12   ProcessLaunchInfoTest.cpp
13   SocketAddressTest.cpp
14   SocketTest.cpp
15   ThreadLauncherTest.cpp
16   XMLTest.cpp
19 if (CMAKE_SYSTEM_NAME MATCHES "Linux|Android")
20   list(APPEND FILES
21     linux/HostTest.cpp
22     linux/SupportTest.cpp
23   )
24 endif()
26 if (LLDB_ENABLE_TERMIOS)
27   list(APPEND FILES
28     posix/TerminalTest.cpp
29   )
30 endif()
32 add_lldb_unittest(HostTests
33   ${FILES}
34   LINK_LIBS
35     lldbHost
36     lldbCore
37     lldbUtilityHelpers
38     lldbHostHelpers
39     LLVMTestingSupport
40     LLVMTargetParser
41   )
43 add_subdirectory(common)