summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorDaniel Friesel <derf@finalrewind.org>2021-01-30 10:41:16 +0100
committerDaniel Friesel <derf@finalrewind.org>2021-01-30 10:42:35 +0100
commitf86e28508be365c389b85bf991138971a51136b8 (patch)
treecaaf6a49ea5b66ebfaeb0fa7274ae9df29550878 /test
parent39d1d2e2799ace2a77ba9bf45735d33f5576b856 (diff)
decrease recommended file size to 32kB to avoid signed overflows
Diffstat (limited to 'test')
-rwxr-xr-xtest/test.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test.sh b/test/test.sh
index e60aaa0..dda32aa 100755
--- a/test/test.sh
+++ b/test/test.sh
@@ -6,7 +6,7 @@ cd "$(dirname "$0")"
./compile.sh
-for file in $(find .. -type f -size -65000c); do
+for file in $(find .. -type f -size -32760c); do
if ! ./deflate $file | ./inflate > tmp; then
echo "inflate error at $file"
./deflate $file | ./inflate > tmp