diff options
author | W. Felix Handte <w@felixhandte.com> | 2018-03-21 15:28:51 (GMT) |
---|---|---|
committer | W. Felix Handte <w@felixhandte.com> | 2018-03-21 15:31:22 (GMT) |
commit | ebdcbc359baa5a836a3c9e647f083fe092456dd4 (patch) | |
tree | 415046198d38cb79cb2ddc110cecbbe802668036 /tests/Makefile | |
parent | 59cf6d400411b8373c0f52bffa180fe8fecff8e6 (diff) | |
download | lz4-ebdcbc359baa5a836a3c9e647f083fe092456dd4.zip lz4-ebdcbc359baa5a836a3c9e647f083fe092456dd4.tar.gz lz4-ebdcbc359baa5a836a3c9e647f083fe092456dd4.tar.bz2 |
Add Dependency to Fix Parallel `make test` Runs
When run with `-jN`, the `rm tmp*` can run in the middle of the `test-lz4-dict`
job, which will then fail, finding its files to have been axed. This adds a
dependency between the two.
Diffstat (limited to 'tests/Makefile')
-rw-r--r-- | tests/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/Makefile b/tests/Makefile index 5954370..77f5d02 100644 --- a/tests/Makefile +++ b/tests/Makefile @@ -327,7 +327,7 @@ test-lz4-opt-parser: lz4 datagen test-lz4-essentials : lz4 datagen test-lz4-basic test-lz4-multiple \ test-lz4-frame-concatenation test-lz4-testmode \ - test-lz4-contentSize + test-lz4-contentSize test-lz4-dict @$(RM) tmp* test-lz4: lz4 datagen test-lz4-essentials test-lz4-opt-parser \ |