r24675: Specify mode to mkdir, as required by some versions of perl.
authorJelmer Vernooij <jelmer@samba.org>
Sun, 26 Aug 2007 20:00:56 +0000 (20:00 +0000)
committerGerald (Jerry) Carter <jerry@samba.org>
Wed, 10 Oct 2007 20:02:38 +0000 (15:02 -0500)
source/selftest/selftest.pl

index b0b53a16f110bcc0644966ac0feea07e510137eb..3506700f697df8ec7a5421497ed5d45e478ee73c 100755 (executable)
@@ -717,7 +717,7 @@ if ($opt_format eq "buildfarm") {
        $msg_ops = new output::plain($opt_verbose, $opt_immediate, $statistics);
 } elsif ($opt_format eq "html") {
        require output::html;
-       mkdir "test-results";
+       mkdir("test-results", 0777);
        $msg_ops = new output::html("test-results", $statistics);
 } else {
        die("Invalid output format '$opt_format'");