X-Git-Url: https://arthur.barton.de/gitweb/?a=blobdiff_plain;ds=sidebyside;f=test%2Fext%2Ftest-web;h=7349890b9a235891a91d8d3c027023e1697a9cf9;hb=c8301efc5911ab5af83e567aaa6c755f8f91c681;hp=b53eb5cfd7a0b0f8ef219134098cb89be5d40448;hpb=401bbf4e6a8048ec8d3e047451bc3a3dde6adaac;p=bup.git diff --git a/test/ext/test-web b/test/ext/test-web index b53eb5c..7349890 100755 --- a/test/ext/test-web +++ b/test/ext/test-web @@ -27,21 +27,20 @@ wait-for-server-start() WVPASS cd "$tmpdir" -# FIXME: add WVSKIP if test -z "$(type -p curl)"; then - WVSTART 'curl does not appear to be installed; skipping test' + WVSKIP 'curl does not appear to be installed; skipping test' exit 0 fi WVPASS bup-cfg-py -c "import socket as s; s.socket(s.AF_UNIX).bind('socket')" curl -s --unix-socket ./socket http://localhost/foo if test $? -ne 7; then - WVSTART 'curl does not appear to support --unix-socket; skipping test' + WVSKIP 'curl does not appear to support --unix-socket; skipping test' exit 0 fi if ! bup-python -c 'import tornado' 2> /dev/null; then - WVSTART 'unable to import tornado; skipping test' + WVSKIP 'unable to import tornado; skipping test' exit 0 fi