From: W. Felix Handte Date: Wed, 21 Mar 2018 15:28:51 +0000 (-0400) Subject: Add Dependency to Fix Parallel `make test` Runs X-Git-Tag: upstream/1.9.3~8^2~41^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ebdcbc359baa5a836a3c9e647f083fe092456dd4;p=platform%2Fupstream%2Flz4.git 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. --- 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 \