# HG changeset patch # User FUJIWARA Katsunori # Date 1384069704 -32400 # Node ID 83347ff5013471cc644cc20c0231586b5b5b5896 # Parent a1f99a7f2d72d21d4f0cfeb6b33f9163a32be9a0 tests: quote environment variable to extract wildcard on MinGW environment On MinGW environment, the command line below in test script can't extract wildcard "*" and remove target files correctly. $ rm $ENVVAR/foo/bar.* To extract wildcard, environment variable should be quoted by double quotation like below: $ rm "$ENVVAR"/foo/bar.* This patch also omits "-f" of "rm" to know whether files are removed or not by exit code of it. diff -r a1f99a7f2d72 -r 83347ff50134 tests/test-extension.t --- a/tests/test-extension.t Sun Nov 10 16:48:24 2013 +0900 +++ b/tests/test-extension.t Sun Nov 10 16:48:24 2013 +0900 @@ -230,7 +230,7 @@ $TESTTMP/a #if no-py3k - $ rm -f $TESTTMP/extroot/foo.* + $ rm "$TESTTMP"/extroot/foo.* $ cat > $TESTTMP/extroot/foo.py < # test relative import > buf = []