From f9ed178fc9d1a4c8b60f773643cce69250f77897 Mon Sep 17 00:00:00 2001 From: "mrowe@apple.com" Date: Fri, 31 Jul 2009 00:52:51 +0000 Subject: [PATCH] Things work better when you create the correct directories. * Scripts/run-webkit-tests: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@46616 268f45cc-cd09-0410-ab3c-d52691b4dbfc --- WebKitTools/ChangeLog | 6 ++++++ WebKitTools/Scripts/run-webkit-tests | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/WebKitTools/ChangeLog b/WebKitTools/ChangeLog index 11c31176200..6b86a473657 100644 --- a/WebKitTools/ChangeLog +++ b/WebKitTools/ChangeLog @@ -1,3 +1,9 @@ +2009-07-30 Mark Rowe + + Things work better when you create the correct directories. + + * Scripts/run-webkit-tests: + 2009-07-30 Mark Rowe Include some information about the error when we die. diff --git a/WebKitTools/Scripts/run-webkit-tests b/WebKitTools/Scripts/run-webkit-tests index 4216ee9a9b8..4866d2558c9 100755 --- a/WebKitTools/Scripts/run-webkit-tests +++ b/WebKitTools/Scripts/run-webkit-tests @@ -1785,7 +1785,7 @@ sub recordActualResultsAndDiff($$) my $actualResultsPath = "$testResultsDirectory/$base-$actualTag$expectedResultExtension"; my $copiedExpectedResultsPath = "$testResultsDirectory/$base-$expectedTag$expectedResultExtension"; - mkpath($expectedResultDirectoryPath); + mkpath(dirname($actualResultsPath)); writeToFile("$actualResultsPath", $actualResults); if (-f $expectedResultPath) { -- GitLab