Skip to content

Commit

Permalink
[lldb/Test] Disable APITests.exe on Windows
Browse files Browse the repository at this point in the history
The generated binary (APITests.exe) is not a valid googletest binary. I
suspect it has something to do with us linking against liblldb.
  • Loading branch information
JDevlieghere committed May 22, 2020
1 parent 5a85582 commit a67b2fa
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion lldb/unittests/CMakeLists.txt
Expand Up @@ -59,7 +59,10 @@ function(add_unittest_inputs test_name inputs)
endfunction()

add_subdirectory(TestingSupport)
add_subdirectory(API)
if (NOT CMAKE_SYSTEM_NAME MATCHES "Windows")
# FIXME: APITests.exe is not a valid googletest binary.
add_subdirectory(API)
endif()
add_subdirectory(Breakpoint)
add_subdirectory(Core)
add_subdirectory(DataFormatter)
Expand Down

0 comments on commit a67b2fa

Please sign in to comment.