From e9cc83b0c8719907b6cf06e6ef13ce0db8eda807 Mon Sep 17 00:00:00 2001 From: Dmitry Shachnev Date: Sun, 1 Jan 2023 23:39:26 +0000 Subject: [PATCH] test sanitizers only on amd64 Forwarded: not-needed Last-Update: 2020-05-21 In Debian, sanitizers are available not on all architectures. For example, libtsan0 is available only on (amd64, arm64, ppc64, ppc64el). Gbp-Pq: Name test_sanitizers_only_on_amd64.diff --- tests/auto/blackbox/testdata/sanitizer/sanitizer.qbs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/auto/blackbox/testdata/sanitizer/sanitizer.qbs b/tests/auto/blackbox/testdata/sanitizer/sanitizer.qbs index 9126a791..02d27595 100644 --- a/tests/auto/blackbox/testdata/sanitizer/sanitizer.qbs +++ b/tests/auto/blackbox/testdata/sanitizer/sanitizer.qbs @@ -23,7 +23,7 @@ CppApplication { // thread sanitizer is not supported return sanitizer !== "thread"; } - return true; + return qbs.architecture === "x86_64"; } condition: { -- 2.30.2