summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xtests/rm/ir-12
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/rm/ir-1 b/tests/rm/ir-1
index 2f20741ae..1d1197148 100755
--- a/tests/rm/ir-1
+++ b/tests/rm/ir-1
@@ -46,7 +46,7 @@ $RM --verbose -i -r $tmp < $test.I > /dev/null 2>&1 || fail=1
test -d $tmp || fail=1
# There should be only one directory left.
-case $tmp/* in
+case `echo $tmp/*` in
$tmp/[abc]) ;;
*) fail=1 ;;
esac