From e05fd7f5a4ac128927abb23802203f1bb7b6a202 Mon Sep 17 00:00:00 2001 From: Kacper Kasper Date: Mon, 6 Apr 2026 00:46:47 +0200 Subject: [PATCH] Disable kernel tests on legacy GCC * Ideally we would build these tests using new GCC so we can run them on GCC2 image. * We can't do that now because they are shared libraries and mangling schemes will not match. Change-Id: Ie8cda81d50831a939d4b55c3760e197b1d83c59c Reviewed-on: https://review.haiku-os.org/c/haiku/+/10670 Tested-by: Commit checker robot Reviewed-by: waddlesplash --- src/tests/system/Jamfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/tests/system/Jamfile b/src/tests/system/Jamfile index eaf4453fbe..b08071d55c 100644 --- a/src/tests/system/Jamfile +++ b/src/tests/system/Jamfile @@ -3,6 +3,8 @@ SubDir HAIKU_TOP src tests system ; SubInclude HAIKU_TOP src tests system benchmarks ; SubInclude HAIKU_TOP src tests system boot ; SubInclude HAIKU_TOP src tests system glue ; -SubInclude HAIKU_TOP src tests system kernel ; +if $(TARGET_CC_IS_LEGACY_GCC_$(architecture)) = 0 { + SubInclude HAIKU_TOP src tests system kernel ; +} SubInclude HAIKU_TOP src tests system libroot ; SubInclude HAIKU_TOP src tests system network ;