blob: ce16cfa732b0316cf42c19a3937569c8837d1ee9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
$FreeBSD$
--- run-tests.sh.orig 2012-06-01 05:51:10.000000000 -0700
+++ run-tests.sh 2012-12-04 09:28:49.000000000 -0800
@@ -7 +7 @@ TESTDIR=tests
-OUTPUT=`mktemp`
+OUTPUT=`mktemp -t tmp.XXXXXXXXXX` # Per the Fedora release 8 (Werewolf) man page
@@ -70 +70 @@ run_test 020 "specify font directory" \
- "X=`mktemp -d`;cp fonts/script.flf \$X/foo.flf;$cmd -d\$X -ffoo;rm -Rf \$X"
+ "X=`mktemp -d -t tmp.XXXXXXXXXX`;cp fonts/script.flf \$X/foo.flf;$cmd -d\$X -ffoo;rm -Rf \$X"
|