diff options
author | Takayuki Matsuoka <t-mat@users.noreply.github.com> | 2022-08-07 11:07:01 (GMT) |
---|---|---|
committer | Takayuki Matsuoka <t-mat@users.noreply.github.com> | 2022-08-07 11:07:01 (GMT) |
commit | 79b40d61b87531e76c70871e60166811a9e57563 (patch) | |
tree | 657132e12a3021c003e65a937c27849a9a28ac6a /tests | |
parent | 431a793b243360bd962e8f6f02884606693b34d9 (diff) | |
download | lz4-79b40d61b87531e76c70871e60166811a9e57563.zip lz4-79b40d61b87531e76c70871e60166811a9e57563.tar.gz lz4-79b40d61b87531e76c70871e60166811a9e57563.tar.bz2 |
Fix: Ignore exitcode of strace and ltrace
Diffstat (limited to 'tests')
-rw-r--r-- | tests/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/Makefile b/tests/Makefile index 33309b4..dc63041 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 |