summaryrefslogtreecommitdiff
path: root/tests/init.cfg
diff options
context:
space:
mode:
Diffstat (limited to 'tests/init.cfg')
-rw-r--r--tests/init.cfg4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/init.cfg b/tests/init.cfg
index 1048cf39d..778625702 100644
--- a/tests/init.cfg
+++ b/tests/init.cfg
@@ -12,7 +12,9 @@ stderr_fileno_=9
# Avoid the problem by rewriting PATH to exclude unsearchable directories.
sanitize_path_()
{
- local saved_IFS=$IFS
+ # FIXME: remove double quotes around $IFS when all tests use init.sh.
+ # They constitute a work-around for a bug in FreeBSD 8.1's /bin/sh.
+ local saved_IFS="$IFS"
IFS=:
set -- $PATH
IFS=$saved_IFS