diff options
author | Bryan Quigley <bryan.quigley@canonical.com> | 2020-05-07 14:56:24 -0700 |
---|---|---|
committer | Jake Hunsaker <jhunsake@redhat.com> | 2020-05-26 14:29:22 -0400 |
commit | 6150afbbc7db76743553b7284d382f4ce8b99d94 (patch) | |
tree | d813b9aea77cb24bd85fadfb75adf0d2a7c82685 /tests | |
parent | c2bf52d77eee2e2312c4e631951ba0404737e441 (diff) | |
download | sos-6150afbbc7db76743553b7284d382f4ce8b99d94.tar.gz |
[archive] Drop bzip2
This just leaves xz with gzip as the automatic backup.
Bzip2 took the most time by far and only does marginally
better than gzip.
time 27 Size 10.72MiB --batch -z xz --log-size 1
time 27 Size 16.32MiB --batch -z gzip --log-size 1
time 40 Size 14.17MiB --batch -z bzip2 --log-size 1
time 43 Size 105.21MiB --batch -z xz --all-logs
time 64 Size 187.38MiB --batch -z gzip --all-logs
time 135 Size 182.86MiB --batch -z bzip2 --all-logs
Resolves: #2053
Signed-off-by: Bryan Quigley <bryan.quigley@canonical.com>
Signed-off-by: Jake Hunsaker <jhunsake@redhat.com>
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/simple.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/simple.sh b/tests/simple.sh index 1e86ae27..08f1c051 100755 --- a/tests/simple.sh +++ b/tests/simple.sh @@ -103,7 +103,7 @@ run_expecting_sucess " --batch --label TEST -a -c never" extract run_expecting_sucess " --batch --debug --log-size 0 -c always" extract run_expecting_sucess " --batch -z xz --log-size 1" extract run_expecting_sucess " --batch -z gzip" extract -run_expecting_sucess " --batch -z bzip2 -t 1 -n hardware" extract +run_expecting_sucess " --batch -t 1 -n hardware" extract run_expecting_sucess " --batch --quiet -e opencl -k kernel.with-timer" extract run_expecting_sucess " --batch --case-id 10101 --all-logs --since=$(date -d "yesterday 13:00" '+%Y%m%d') " extract run_expecting_sucess " --batch --verbose --no-postproc" extract |