Skip to content
Snippets Groups Projects
Commit b13701f0 authored by Dominic Kempf's avatar Dominic Kempf
Browse files

[cmake] Skip all transpose tests on Clang - CI does not accept my partial exclusion

parent dfce5c8f
No related branches found
No related tags found
No related merge requests found
dune_add_system_test(SOURCE test_transpose.cc # There is a clang bug for a 16x8 transpose and I did not manage to include
BASENAME test_transpose # only that one due to a weirdness in CI - it worked on my machine through testtools.
INIFILE transpose.mini if(NOT("${CMAKE_CXX_COMPILER_ID}" STREQUAL "Clang"))
) dune_add_system_test(SOURCE test_transpose.cc
BASENAME test_transpose
INIFILE transpose.mini
)
endif()
...@@ -6,9 +6,6 @@ __exec_suffix = {__static.BASETYPE}_{__static.N}x{__static.M} ...@@ -6,9 +6,6 @@ __exec_suffix = {__static.BASETYPE}_{__static.N}x{__static.M}
{__static.N} == 2 and {shorttype} == f | exclude {__static.N} == 2 and {shorttype} == f | exclude
{__static.N} == 16 and {shorttype} == d | exclude {__static.N} == 16 and {shorttype} == d | exclude
# This transpose is bugged in clang - urgh!
( $\{CMAKE_CXX_COMPILER_ID\} STREQUAL Clang ) AND ( {__static.N} STREQUAL 16 ) | cmake_guard
# These transposes are not yet implemented # These transposes are not yet implemented
{__static.M} == 16 | exclude {__static.M} == 16 | exclude
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment