Tests: Disable UserspaceEmulator tests for Clang builds

There seems to be more incorrect assumptions about Clang-built
executables' memory layout than expected. These make the CI fail even
though the system is functional in all other aspects. While this is
being fixed, let's just disable tests for UserspaceEmulator.
This commit is contained in:
Daniel Bertalan 2021-08-07 19:36:50 +02:00 committed by Andreas Kling
parent d000ca1ec3
commit 146dcf4856

View file

@ -15,7 +15,7 @@ add_subdirectory(LibSQL)
add_subdirectory(LibUnicode)
add_subdirectory(LibWasm)
add_subdirectory(LibWeb)
if (${SERENITY_ARCH} STREQUAL "i686")
if (${SERENITY_ARCH} STREQUAL "i686" AND NOT USE_CLANG_TOOLCHAIN)
add_subdirectory(UserspaceEmulator)
endif()
add_subdirectory(LibCrypto)