Skip to content

Commit

Permalink
Disabled execute_hierarchical_commands test in Linux environment.
Browse files Browse the repository at this point in the history
  • Loading branch information
stripe2933 committed Aug 29, 2024
1 parent fff9e0c commit 1a51ec5
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions test/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
add_executable(execute_hierarchical_commands execute_hierarchical_commands.cpp)
target_link_libraries(execute_hierarchical_commands PRIVATE vku::vku)
add_test(NAME execute_hierarchical_commands COMMAND execute_hierarchical_commands)
# TODO: due to the current Clang C++20 module and libstdc++ compatibility, the test is disabled. Enable the test when
# it available.
if (NOT LINUX)
add_executable(execute_hierarchical_commands execute_hierarchical_commands.cpp)
target_link_libraries(execute_hierarchical_commands PRIVATE vku::vku)
add_test(NAME execute_hierarchical_commands COMMAND execute_hierarchical_commands)
endif()

add_executable(get_mip_view_create_infos get_mip_view_create_infos.cpp)
target_link_libraries(get_mip_view_create_infos PRIVATE vku::vku)
Expand Down

0 comments on commit 1a51ec5

Please sign in to comment.