From 5d48696528d644f67813eeba72e3f9a6b8d416cb Mon Sep 17 00:00:00 2001 From: Nick Hastings Date: Sun, 4 Aug 2024 11:19:19 -0400 Subject: [PATCH] fix(sourcehook): Disable tests on linux x64 for now --- core/sourcehook/test/AMBuilder | 2 ++ 1 file changed, 2 insertions(+) diff --git a/core/sourcehook/test/AMBuilder b/core/sourcehook/test/AMBuilder index 6d8372f..6edca31 100644 --- a/core/sourcehook/test/AMBuilder +++ b/core/sourcehook/test/AMBuilder @@ -4,6 +4,8 @@ import os for cxx in MMS.all_targets: name = 'test_sourcehook' binary = MMS.Program(cxx, name) + if binary.compiler.target.arch == 'x86_64' and binary.compiler.target.platform == 'linux': + continue binary.compiler.defines += [ 'SOURCEHOOK_TESTS',