From 1711fed0dd7ab34b0c6029364019a51695c84174 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Thu, 19 Apr 2007 07:39:45 +0000 Subject: r22359: try to fix the start failures in the build-farm by creating the prefix dir before using abs_path() metze (This used to be commit a3f35f5af4533d7903c2a1e181017b310baa9d71) --- source4/script/tests/selftest.pl | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/source4/script/tests/selftest.pl b/source4/script/tests/selftest.pl index 747f0d100a..0a41276881 100755 --- a/source4/script/tests/selftest.pl +++ b/source4/script/tests/selftest.pl @@ -444,19 +444,20 @@ $prefix =~ s+//+/+; $prefix =~ s+/./+/+; $prefix =~ s+/$++; +die("using an empty prefix isn't allowed") unless $prefix ne ""; + +#Ensure we have the test prefix around +mkdir $prefix unless -d $prefix; + my $prefix_abs = abs_path($prefix); my $srcdir_abs = abs_path($srcdir); -die("using an empty prefix isn't allowed") unless $prefix ne ""; die("using an empty absolute prefix isn't allowed") unless $prefix_abs ne ""; die("using '/' as absolute prefix isn't allowed") unless $prefix_abs ne "/"; $ENV{PREFIX} = $prefix; $ENV{SRCDIR} = $srcdir; -#Ensure we have the test prefix around -mkdir $prefix unless -d $prefix; - my $tls_enabled = not $opt_quick; my $from_build_farm = (defined($ENV{RUN_FROM_BUILD_FARM}) and ($ENV{RUN_FROM_BUILD_FARM} eq "yes")); -- cgit