From 64c7e8cf2aaa353eec368ac72e3ec9ec296be4e2 Mon Sep 17 00:00:00 2001 From: Alex Mestiashvili Date: Thu, 21 Dec 2017 13:25:26 +0000 Subject: [PATCH] skip-long-running-tests_on_hurd Gbp-Pq: Name 0011-skip-long-running-tests_on_hurd.patch --- tests/playTests.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tests/playTests.sh b/tests/playTests.sh index 4b99b61..f45dbd6 100755 --- a/tests/playTests.sh +++ b/tests/playTests.sh @@ -713,7 +713,10 @@ roundTripTest -g18000019 -P96 19 roundTripTest -g5000000000 -P99 1 +DEBIAN_ARCH=$(dpkg-architecture -qDEB_HOST_ARCH_OS) +if [ "$DEBIAN_ARCH" != "hurd" ]; then fileRoundTripTest -g4193M -P99 1 +fi $ECHO "\n===> zstd long, long distance matching round-trip tests " @@ -732,7 +735,9 @@ then roundTripTest -g80000000 -P99 "19 -T2" " " roundTripTest -g5000000000 -P99 "1 -T2" " " roundTripTest -g500000000 -P97 "1 -T999" " " + if [ "$DEBIAN_ARCH" != "hurd" ]; then fileRoundTripTest -g4103M -P98 " -T0" " " + fi roundTripTest -g400000000 -P97 "1 --long=24 -T2" " " else $ECHO "\n**** no multithreading, skipping zstdmt tests **** " -- 2.30.2