From: Martin Mares Date: Sun, 18 Nov 2007 19:00:34 +0000 (+0100) Subject: Let the tester create its tmp directory if it doesn't exist. X-Git-Tag: holmes-import~502^2~1 X-Git-Url: http://mj.ucw.cz/gitweb/?a=commitdiff_plain;h=1bcd6e0bef547811d0d153ece976936dea6656c8;p=libucw.git Let the tester create its tmp directory if it doesn't exist. --- diff --git a/build/tester b/build/tester index fd6cce3f..ae3165a4 100755 --- a/build/tester +++ b/build/tester @@ -51,6 +51,10 @@ while (<>) { } } +if (! -d "$rundir/tmp") { + mkdir "$rundir/tmp" or die "Unable to create $rundir/tmp: $!"; +} + my $i = 0; my $errors = 0; my $prev_run = undef;