diff options
author | 2013-06-14 20:52:08 +0000 | |
---|---|---|
committer | 2013-06-14 20:52:08 +0000 | |
commit | f73d54077eb44cc4b79ea96df9210bd276a49be2 (patch) | |
tree | 88631e670e5eaee8fbf35997b7cdf3dcdbf96b31 | |
parent | Add support for fuse_get_context(3) needed by ntfs-3g. (diff) | |
download | wireguard-openbsd-f73d54077eb44cc4b79ea96df9210bd276a49be2.tar.xz wireguard-openbsd-f73d54077eb44cc4b79ea96df9210bd276a49be2.zip |
Add -T option to set the temp dir.
-rw-r--r-- | bin/ksh/tests/th | 27 |
1 files changed, 15 insertions, 12 deletions
diff --git a/bin/ksh/tests/th b/bin/ksh/tests/th index 9fb3ef33b11..80318ca30d4 100644 --- a/bin/ksh/tests/th +++ b/bin/ksh/tests/th @@ -1,5 +1,5 @@ #!/usr/bin/perl -# $OpenBSD: th,v 1.15 2013/06/14 20:31:56 millert Exp $ +# $OpenBSD: th,v 1.16 2013/06/14 20:52:08 millert Exp $ # @@ -146,6 +146,7 @@ Usage: $prog [-s test-set] [-C category] [-p prog] [-v] [-e e=v] test-name ... -s s Read tests from file s; if s is a directory, it is recursively scaned for test files (which end in .t). -t t Use t as default time limit for tests (default is unlimited) + -T dir Use dir instead of /tmp to hold temporary files -P program (-p) string has multiple words, and the program is in the path (kludge option) -v Verbose mode: print reason test failed. @@ -191,16 +192,6 @@ EOF "os:$os", '1' ); -($fh, $temps) = mkstemp("/tmp/rts.XXXXXXXX"); -close($fh); -($fh, $tempi) = mkstemp("/tmp/rti.XXXXXXXX"); -close($fh); -($fh, $tempo) = mkstemp("/tmp/rto.XXXXXXXX"); -close($fh); -($fh, $tempe) = mkstemp("/tmp/rte.XXXXXXXX"); -close($fh); -$tempdir = mkdtemp("/tmp/rtd.XXXXXXXX"); - $nfailed = 0; $nxfailed = 0; $npassed = 0; @@ -208,7 +199,7 @@ $nxpassed = 0; %known_tests = (); -if (!getopts('C:p:Ps:t:ve:')) { +if (!getopts('C:p:Ps:t:T:ve:')) { print STDERR $Usage; exit 1; } @@ -218,6 +209,7 @@ die "$prog: no test set specified (use -s)\n" if !defined $opt_s; $test_prog = $opt_p; $verbose = defined $opt_v && $opt_v; $test_set = $opt_s; +$temp_dir = $opt_T || "/tmp"; if (defined $opt_t) { die "$prog: bad -t argument (should be number > 0): $opt_t\n" if $opt_t !~ /^\d+$/ || $opt_t <= 0; @@ -278,6 +270,17 @@ $SIG{'ALRM'} = 'catch_sigalrm'; $| = 1; +# Create temp files +($fh, $temps) = mkstemp("${temp_dir}/rts.XXXXXXXX"); +close($fh); +($fh, $tempi) = mkstemp("${temp_dir}/rti.XXXXXXXX"); +close($fh); +($fh, $tempo) = mkstemp("${temp_dir}/rto.XXXXXXXX"); +close($fh); +($fh, $tempe) = mkstemp("${temp_dir}/rte.XXXXXXXX"); +close($fh); +$tempdir = mkdtemp("${temp_dir}/rtd.XXXXXXXX"); + if (-d $test_set) { $file_prefix_skip = length($test_set) + 1; $ret = &process_test_dir($test_set); |