Disable LLVM testsuite on x32

This commit is contained in:
John Paul Adrian Glaubitz 2024-06-01 23:16:36 +02:00
parent 99f5b32d63
commit 5fdf2c5075
2 changed files with 9 additions and 2 deletions

7
debian/changelog vendored
View File

@ -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 <glaubitz@physik.fu-berlin.de> Sat, 01 Jun 2024 23:16:14 +0200
llvm-toolchain-snapshot (1:19~++20240529093513+2cfea14a57ad-1~exp1) experimental; urgency=medium
* experimental New snapshot release

4
debian/rules vendored
View File

@ -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