Преглед изворни кода

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.
Daniel Bertalan пре 3 година
родитељ
комит
146dcf4856
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      Tests/CMakeLists.txt

+ 1 - 1
Tests/CMakeLists.txt

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