summaryrefslogtreecommitdiffstats
path: root/tests/018/gzip.tl
diff options
context:
space:
mode:
Diffstat (limited to 'tests/018/gzip.tl')
-rw-r--r--tests/018/gzip.tl4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/018/gzip.tl b/tests/018/gzip.tl
index c6d5767e..712ade3c 100644
--- a/tests/018/gzip.tl
+++ b/tests/018/gzip.tl
@@ -28,7 +28,9 @@
(when %have-gzip%
(file-put-string "test-file" "Hello, World!")
(remove-path "test-file.gz")
- (shchk "gzip test-file")
+ (cond ((eq (os-symbol) :openbsd)
+ (shchk "gzip -f test-file"))
+ (t (shchk "gzip test-file")))
(test (file-get-string "test-file.gz" "z") "Hello, World!")
(each ((mode (cons "z" (list-seq "z0".."z9"))))