From 2ee50d150ee009f36135540b459e6ff328549725 Mon Sep 17 00:00:00 2001 From: Lasse Collin Date: Mon, 23 May 2022 20:16:00 +0300 Subject: [PATCH] Tests: Remove progress indicator from test_compress.sh. It will be useless with Automake's parallel tests. --- tests/test_compress.sh | 9 --------- 1 file changed, 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)