From 5fdf2c507527e86d5510d02efe8c3473f3745839 Mon Sep 17 00:00:00 2001 From: John Paul Adrian Glaubitz Date: Sat, 1 Jun 2024 23:16:36 +0200 Subject: [PATCH] Disable LLVM testsuite on x32 --- debian/changelog | 7 +++++++ debian/rules | 4 ++-- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/debian/changelog b/debian/changelog index fcda86ba..3b4bf1c7 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +llvm-toolchain-snapshot (1:19~++20240529093513+2cfea14a57ad-1~exp2) UNRELEASED; urgency=medium + + [ John Paul Adrian Glaubitz ] + * Disable LLVM testsuite on x32 + + -- John Paul Adrian Glaubitz Sat, 01 Jun 2024 23:16:14 +0200 + llvm-toolchain-snapshot (1:19~++20240529093513+2cfea14a57ad-1~exp1) experimental; urgency=medium * experimental New snapshot release diff --git a/debian/rules b/debian/rules index 24be589b..5745a316 100755 --- a/debian/rules +++ b/debian/rules @@ -398,8 +398,8 @@ ifeq (riscv64,$(DEB_HOST_ARCH)) endif endif -# llvm tests timeout, disable it on mipsel -ifeq (mipsel,$(DEB_HOST_ARCH)) +# llvm tests timeout, disable it on mipsel and x32 +ifneq (,$(filter $(DEB_HOST_ARCH), mipsel x32)) RUN_TEST=no endif