Codebase list rust-libslirp / 40826cc
simd: only run tests on working architectures Ximin Luo 5 years ago
2 changed file(s) with 15 addition(s) and 1 deletion(s). Raw diff Collapse all Expand all
0 rust-simd (0.2.2-2) UNRELEASED-FIXME-AUTOGENERATED-DEBCARGO; urgency=medium
1
2 * Package simd 0.2.2 from crates.io using debcargo 2.2.6
3 * Ignore test failures on expected non-working architectures.
4
5 -- Ximin Luo <infinity0@debian.org> Fri, 7 Sep 2018 20:03:40 -0700
6
07 rust-simd (0.2.2-1) unstable; urgency=medium
18
29 * Package simd 0.2.2 from crates.io using debcargo 2.2.6
33 dh $@ --buildsystem cargo
44
55 # Upstream at this version requires nightly features :(
6 # They also only work on specific architectures, so ignore test failures elsewhere.
7 # See https://github.com/hsivonen/simd/issues/25 and 26
68 override_dh_auto_test:
79 export RUSTC_BOOTSTRAP=1; \
8 dh_auto_test
10 case $(DEB_HOST_RUST_TYPE) in \
11 aarch64-*|x86-*|x86_64-*) \
12 dh_auto_test;; \
13 *) \
14 dh_auto_test || true;; \
15 esac