summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rwxr-xr-xtest/runner.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/runner.sh b/test/runner.sh
index 827fa8f..d60eac5 100755
--- a/test/runner.sh
+++ b/test/runner.sh
@@ -31,7 +31,7 @@ for TEXT in "$TESTDIR"/*.text; do
test -f "$PIPE" -a -n "$PIPE" || abort "mktemp failed"
trap 'rm -f "$PIPE"' EXIT INT TERM HUP
rm -f "$PIPE"
- mkfifo "$PIPE" || abort "unable to create named pipe"
+ mkfifo -m 0600 "$PIPE" || abort "unable to create named pipe"
$SCRIPT "$TEXT" | $TIDY > "$PIPE" &
DIFF=$($TIDY "$HTML" | diff "$PIPE" -)