Skip to content

Commit

Permalink
Merge pull request #2639 from ipfs/silence-docker-check
Browse files Browse the repository at this point in the history
test-lib: make checking for docker silent
  • Loading branch information
whyrusleeping committed May 7, 2016
2 parents f4a5bf5 + c54c045 commit 00f9ce6
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 00f9ce6

Please sign in to comment.