mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-24 20:08:10 +01:00
test: hide message from moreutils parallel.
The argument --version confuses moreutils parallel, but this is OK, because its confusing does not include printing "GNU"
This commit is contained in:
parent
f2b5ad28e2
commit
00487fa901
1 changed files with 1 additions and 1 deletions
|
@ -50,7 +50,7 @@ META_FAILURE=
|
|||
# Run the tests
|
||||
if test -z "$NOTMUCH_TEST_SERIALIZE" && command -v parallel >/dev/null ; then
|
||||
test -t 1 && export COLORS_WITHOUT_TTY=t || :
|
||||
if parallel --version | grep -q GNU ; then
|
||||
if parallel --version 2>&1 | grep -q GNU ; then
|
||||
echo "INFO: running tests with GNU parallel"
|
||||
printf '%s\n' $TESTS | $TEST_TIMEOUT_CMD parallel
|
||||
else
|
||||
|
|
Loading…
Reference in a new issue