diff --git a/debian/patches/series b/debian/patches/series index 4017cdecb8..f85ac25628 100644 --- a/debian/patches/series +++ b/debian/patches/series @@ -13,6 +13,7 @@ u-ignoretest-armhf_01.patch u-ignoretest-armhf_02.patch u-ignoretest-armhf_03.patch u-ignoretest-armhf_05.patch +u-ignoretest-armhf_06.patch u-ignoretest-arm64.patch u-ignoretest-ppc64el.patch u-workaround-testfailure-armhf_01.patch diff --git a/debian/patches/u-ignoretest-armhf_06.patch b/debian/patches/u-ignoretest-armhf_06.patch new file mode 100644 index 0000000000..901e40bbbe --- /dev/null +++ b/debian/patches/u-ignoretest-armhf_06.patch @@ -0,0 +1,16 @@ +Description: Disable failing run-make test on armhf + Last checked this still affects 1.18 +Author: Ximin Luo +Bug: https://github.com/rust-lang/rust/issues/43329 +--- +This patch header follows DEP-3: http://dep.debian.net/deps/dep3/ +--- a/src/test/run-make/extern-fn-struct-passing-abi/Makefile ++++ b/src/test/run-make/extern-fn-struct-passing-abi/Makefile +@@ -1,5 +1,7 @@ + -include ../tools.mk + + all: $(call NATIVE_STATICLIB,test) ++ifeq (,$(filter armv7-unknown-linux-gnueabihf,$(TARGET))) + $(RUSTC) test.rs + $(call RUN,test) || exit 1 ++endif