aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorLasse Collin <lasse.collin@tukaani.org>2022-05-23 20:16:00 +0300
committerLasse Collin <lasse.collin@tukaani.org>2022-05-23 20:16:00 +0300
commit2ee50d150ee009f36135540b459e6ff328549725 (patch)
treecb7d24e5e9a1e794c0525c97b4c578e29a525f1f /tests
parentliblzma: Silence a warning. (diff)
downloadxz-2ee50d150ee009f36135540b459e6ff328549725.tar.xz
Tests: Remove progress indicator from test_compress.sh.
It will be useless with Automake's parallel tests.
Diffstat (limited to 'tests')
-rwxr-xr-xtests/test_compress.sh9
1 files changed, 0 insertions, 9 deletions
diff --git a/tests/test_compress.sh b/tests/test_compress.sh
index 62da0f92..2ac25c7e 100755
--- a/tests/test_compress.sh
+++ b/tests/test_compress.sh
@@ -69,9 +69,6 @@ test_xz() {
exit 1
fi
fi
-
- # Show progress:
- echo . | tr -d '\n\r'
}
XZ="../src/xz/xz --memlimit-compress=48MiB --memlimit-decompress=5MiB \
@@ -95,12 +92,8 @@ trap 'rm -f tmp_compressed tmp_uncompressed' 0
# Compress and decompress each file with various filter configurations.
# This takes quite a bit of time.
-echo "test_compress.sh:"
for FILE in compress_generated_* "$srcdir"/compress_prepared_*
do
- MSG=`echo "x$FILE" | sed 's,^x,,; s,^.*/,,; s,^compress_,,'`
- echo " $MSG" | tr -d '\n\r'
-
# Don't test with empty arguments; it breaks some ancient
# proprietary /bin/sh versions due to $@ used in test_xz().
test_xz -1
@@ -134,8 +127,6 @@ do
# Disabled until Subblock format is stable.
# test_xz --subblock $ARGS --lzma2=dict=64KiB,nice=32,mode=fast
done
-
- echo
done
(exit 0)