diff options
author | André Klitzing <aklitzing@gmail.com> | 2018-11-02 15:35:51 +0100 |
---|---|---|
committer | Andy Postnikov <apostnikov@gmail.com> | 2018-11-02 18:45:45 +0200 |
commit | b0c4913719de7739dac8d0b968711d5a2434b06d (patch) | |
tree | 036cd71a08182e1cd6a69e4d1857aa222476d2a0 /community/zstd/fix-list-tests-with-stdin.patch | |
parent | b399cc803aabd34f1bfd9b8c6a462ff3a56db325 (diff) | |
download | aports-b0c4913719de7739dac8d0b968711d5a2434b06d.tar.bz2 aports-b0c4913719de7739dac8d0b968711d5a2434b06d.tar.xz |
community/zstd: upgrade to 1.3.7
Diffstat (limited to 'community/zstd/fix-list-tests-with-stdin.patch')
-rw-r--r-- | community/zstd/fix-list-tests-with-stdin.patch | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/community/zstd/fix-list-tests-with-stdin.patch b/community/zstd/fix-list-tests-with-stdin.patch deleted file mode 100644 index a10355448c..0000000000 --- a/community/zstd/fix-list-tests-with-stdin.patch +++ /dev/null @@ -1,30 +0,0 @@ -From 8e7bdc18d62632adcee029b2f8f5013d11549dd7 Mon Sep 17 00:00:00 2001 -From: "W. Felix Handte" <w@felixhandte.com> -Date: Fri, 29 Jun 2018 16:31:22 -0400 -Subject: [PATCH] Fix Tests of `--list` Behavior with `stdin` - ---- - tests/playTests.sh | 10 ++++++++-- - 1 file changed, 8 insertions(+), 2 deletions(-) - -diff --git a/tests/playTests.sh b/tests/playTests.sh -index 09a7377f2..aa5535d59 100755 ---- a/tests/playTests.sh -+++ b/tests/playTests.sh -@@ -731,8 +731,14 @@ $ECHO "\n===> zstd --list/-l error detection tests " - ! $ZSTD -lv tmp1* - ! $ZSTD --list -v tmp2 tmp12.zst - --$ECHO "\n===> zstd --list/-l exits 1 when stdin is piped in" --! echo "piped STDIN" | $ZSTD --list -+$ECHO "\n===> zstd --list/-l errors when presented with stdin / no files" -+! $ZSTD -l -+! $ZSTD -l - -+! $ZSTD -l < tmp1.zst -+! $ZSTD -l - < tmp1.zst -+! $ZSTD -l - tmp1.zst -+! $ZSTD -l - tmp1.zst < tmp1.zst -+$ZSTD -l tmp1.zst < tmp1.zst # but doesn't error just because stdin is not a tty - - $ECHO "\n===> zstd --list/-l test with null files " - ./datagen -g0 > tmp5 |