diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2016-08-03 16:21:53 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2016-08-15 01:31:17 +0200 |
commit | 560cf8c7ebd3feff6244a381a300cb2bac8570ec (patch) | |
tree | c59e3a17c62ee9f87808783e53c438bd1b8755a3 | |
parent | 71cfbce655bcfa6d3e0154d441a33d3bfd1dca57 (diff) | |
download | busybox-w32-560cf8c7ebd3feff6244a381a300cb2bac8570ec.tar.gz busybox-w32-560cf8c7ebd3feff6244a381a300cb2bac8570ec.tar.bz2 busybox-w32-560cf8c7ebd3feff6244a381a300cb2bac8570ec.zip |
gzip: add test that checks that -9 compresses better than -1
Signed-off-by: Natanael Copa <ncopa@alpinelinux.org>
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r-- | testsuite/gzip/gzip-compression-levels | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/testsuite/gzip/gzip-compression-levels b/testsuite/gzip/gzip-compression-levels new file mode 100644 index 000000000..6d9a13d08 --- /dev/null +++ b/testsuite/gzip/gzip-compression-levels | |||
@@ -0,0 +1,5 @@ | |||
1 | # FEATURE: CONFIG_FEATURE_GZIP_LEVELS | ||
2 | |||
3 | level1=$(busybox gzip -c -1 $(which busybox) | wc -c) | ||
4 | level9=$(busybox gzip -c -9 $(which busybox) | wc -c) | ||
5 | test $level1 -gt $level9 | ||