From: Rob Browning Date: Sat, 11 Jun 2016 17:59:38 +0000 (-0500) Subject: test-web: use path with unique unicode sequence X-Git-Tag: 0.28.1~1 X-Git-Url: https://arthur.barton.de/gitweb/?p=bup.git;a=commitdiff_plain;h=9c3dbf9bcc92a7a65a733bd60f570a6b16fd9aae;ds=sidebyside test-web: use path with unique unicode sequence Change the test path from "éxcitement" to "¡excitement!" since the former has multiple valid unicode encodings (e.g. given combining characters, etc.). With the previous string, the test might fail if something along the way normalized it (which was the case on at least some versions of OS X). Thanks to ilovezfs for reporting the problem and helping with the fix. Signed-off-by: Rob Browning Tested-by: Rob Browning --- diff --git a/t/test-web.sh b/t/test-web.sh index dd46194..45eac5e 100755 --- a/t/test-web.sh +++ b/t/test-web.sh @@ -46,18 +46,18 @@ if test -n "$run_test"; then WVSTART 'web' WVPASS bup init WVPASS mkdir src - WVPASS echo 'éxcitement' > src/data + WVPASS echo '¡excitement!' > src/data WVPASS bup index src - WVPASS bup save -n 'éxcitement' --strip src + WVPASS bup save -n '¡excitement!' --strip src "$TOP/bup" web unix://socket & web_pid=$! wait-for-server-start WVPASS curl --unix-socket ./socket \ - 'http://localhost/%C3%A9xcitement/latest/data' > result + 'http://localhost/%C2%A1excitement%21/latest/data' > result - WVPASSEQ 'éxcitement' "$(cat result)" + WVPASSEQ '¡excitement!' "$(cat result)" WVPASS kill -s TERM "$web_pid" WVPASS wait "$web_pid" fi