Re-work the test suite so it now works with Automake (via "make check").
[mmh] / test / whatnow / test-cd
1 #!/bin/sh
2 ######################################################
3 #
4 # Test that whatnow's "cd" copes with directory names
5 # which have spaces and quotes in them (see bug #23319)
6 #
7 ######################################################
8
9 if [ -z "${MH_TEST_COMMON}" ]; then
10     echo "MH_TEST_COMMON not set; try running via 'make check'"
11 fi
12
13 . ${MH_TEST_COMMON}
14
15 setup_test
16
17 set -e
18 SPDIR="$MH_TEST_DIR/foo's bar"
19 rm -rf "$SPDIR"
20 mkdir "$SPDIR"
21 cd "$SPDIR"
22 touch baz boz
23 cd
24
25 expectederr=$MH_TEST_DIR/$$.expectederr
26 actualerr=$MH_TEST_DIR/$$.actualerr
27 expected=$MH_TEST_DIR/$$.expected
28 actual=$MH_TEST_DIR/$$.actual
29
30 cat > $expected <<EOF
31 $SPDIR
32 EOF
33
34 cat > $expectederr <<EOF
35 EOF
36
37 # ||true to ignore whatnow's exit status
38 # watch the quoting -- shell and printf and then the shell run inside whatnow
39 printf "cd $MH_TEST_DIR/foo\\\\'s\\\\ bar\npwd\n" | whatnow -noedit -prompt '' 2> "$actualerr" > "$actual" || true
40
41 diff -u $expectederr $actualerr || exit 1
42 diff -u $expected $actual