Skip to content

Commit

Permalink
test-lib: make checking for docker silent
Browse files Browse the repository at this point in the history
License: MIT
Signed-off-by: Christian Couder <[email protected]>
  • Loading branch information
chriscool committed May 7, 2016
1 parent f4a5bf5 commit c54c045
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/sharness/lib/test-lib.sh
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ SHARNESS_LIB="lib/sharness/sharness.sh"
# grab + output options
test "$TEST_NO_FUSE" != 1 && test_set_prereq FUSE
test "$TEST_EXPENSIVE" = 1 && test_set_prereq EXPENSIVE
test "$TEST_NO_DOCKER" != 1 && type docker && test_set_prereq DOCKER
test "$TEST_NO_DOCKER" != 1 && type docker >/dev/null 2>&1 && test_set_prereq DOCKER

TEST_OS=$(uname -s | tr [a-z] [A-Z])

Expand Down

0 comments on commit c54c045

Please sign in to comment.