Disable failing run-make test on armhf

This commit is contained in:
Ximin Luo 2017-07-22 20:25:31 +02:00
parent 0d3674eb1e
commit 73eb7819a7
2 changed files with 17 additions and 0 deletions

View File

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

View File

@ -0,0 +1,16 @@
Description: Disable failing run-make test on armhf
Last checked this still affects 1.18
Author: Ximin Luo <infinity0@debian.org>
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