summaryrefslogtreecommitdiff
path: root/tests/defs.m4sh
diff options
context:
space:
mode:
Diffstat (limited to 'tests/defs.m4sh')
-rw-r--r--tests/defs.m4sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/defs.m4sh b/tests/defs.m4sh
index 4d66ceca..0943d236 100644
--- a/tests/defs.m4sh
+++ b/tests/defs.m4sh
@@ -141,7 +141,7 @@ func_rmprefixdir ()
{
$debug_cmd
- test -d $prefix && rm -rf $prefix
+ test -d "$prefix" && rm -rf "$prefix"
prefix=NONE
}
@@ -338,7 +338,7 @@ func_exec ()
exec_status=$EXIT_SKIP
else
# Simple check to see if they are superuser.
- if test $exec_status = $EXIT_FAILURE || test -w /; then :
+ if test "$exec_status" = "$EXIT_FAILURE" || test -w /; then :
else
func_msg "You may need to run $0 as the superuser."
fi