aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTakayuki Matsuoka <t-mat@users.noreply.github.com>2022-08-07 20:07:01 +0900
committerTakayuki Matsuoka <t-mat@users.noreply.github.com>2022-08-07 20:07:01 +0900
commit79b40d61b87531e76c70871e60166811a9e57563 (patch)
tree657132e12a3021c003e65a937c27849a9a28ac6a
parent431a793b243360bd962e8f6f02884606693b34d9 (diff)
downloadlz4-79b40d61b87531e76c70871e60166811a9e57563.tar.gz
Fix: Ignore exitcode of strace and ltrace
-rw-r--r--tests/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/Makefile b/tests/Makefile
index 33309b45..dc630417 100644
--- a/tests/Makefile
+++ b/tests/Makefile
@@ -612,7 +612,7 @@ test-decompress-partial : decompress-partial decompress-partial-usingDict
test-freestanding: freestanding
@echo "\n ---- test freestanding ----"
./freestanding$(EXT)
- strace ./freestanding$(EXT)
- ltrace ./freestanding$(EXT)
+ -strace ./freestanding$(EXT)
+ -ltrace ./freestanding$(EXT)
endif