summaryrefslogtreecommitdiff
path: root/testsuite/gzip/gzip-compression-levels (plain)
blob: 6d9a13d080ff4a5ebd002c7a8e9ecf5543db60e0
1# FEATURE: CONFIG_FEATURE_GZIP_LEVELS
2
3level1=$(busybox gzip -c -1 $(which busybox) | wc -c)
4level9=$(busybox gzip -c -9 $(which busybox) | wc -c)
5test $level1 -gt $level9
6