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
BASENAME test_transpose
INIFILE transpose.mini
)
# There is a clang bug for a 16x8 transpose and I did not manage to include
# only that one due to a weirdness in CI - it worked on my machine through testtools.
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}
{__static.N} == 2 and {shorttype} == f | 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
{__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