浏览代码

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 4 年之前
父节点
当前提交
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(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)