From 66008358027d839d35d7594e9cb5bc3296092eef Mon Sep 17 00:00:00 2001 From: Gunnar Beutner Date: Wed, 23 Jun 2021 21:48:03 +0200 Subject: [PATCH] Tests: Disable kernel and LibC tests for x86_64 Some of the tests assume 32-bit addresses, so let's disable them for now. --- Tests/CMakeLists.txt | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Tests/CMakeLists.txt b/Tests/CMakeLists.txt index bf5502d4d4..a3d245d1ae 100644 --- a/Tests/CMakeLists.txt +++ b/Tests/CMakeLists.txt @@ -1,6 +1,8 @@ add_subdirectory(AK) -add_subdirectory(Kernel) -add_subdirectory(LibC) +if ("${SERENITY_ARCH}" STREQUAL "i686") + add_subdirectory(Kernel) + add_subdirectory(LibC) +endif() add_subdirectory(LibCompress) add_subdirectory(LibCore) add_subdirectory(LibCpp)