From: ap Date: Mon, 13 Mar 2006 19:55:58 +0000 (+0000) Subject: Fix proposed by Mitz Pettel, reviewed by Darin. X-Git-Url: https://git.webkit.org/?p=WebKit-https.git;a=commitdiff_plain;h=0b992fcbb31130860e421a9f4e5de64e24dd3494 Fix proposed by Mitz Pettel, reviewed by Darin. - fix http://bugzilla.opendarwin.org/show_bug.cgi?id=7718 run-webkit-tests fast/dom/HTMLObjectElement/ hangs * Scripts/run-webkit-tests: Make test paths canonical, to form proper URLs (sequences of slashes are equivalent to a single slash in POSIX paths, but not in URLs). git-svn-id: https://svn.webkit.org/repository/webkit/trunk@13267 268f45cc-cd09-0410-ab3c-d52691b4dbfc --- diff --git a/WebKitTools/ChangeLog b/WebKitTools/ChangeLog index e70e95b285be..6024d3daa968 100644 --- a/WebKitTools/ChangeLog +++ b/WebKitTools/ChangeLog @@ -1,3 +1,14 @@ +2006-03-13 Alexey Proskuryakov + + Fix proposed by Mitz Pettel, reviewed by Darin. + + - fix http://bugzilla.opendarwin.org/show_bug.cgi?id=7718 + run-webkit-tests fast/dom/HTMLObjectElement/ hangs + + * Scripts/run-webkit-tests: Make test paths canonical, to form proper URLs + (sequences of slashes are equivalent to a single slash in POSIX paths, but not + in URLs). + 2006-03-09 Darin Adler Reviewed by John Sullivan. diff --git a/WebKitTools/Scripts/run-webkit-tests b/WebKitTools/Scripts/run-webkit-tests index 5df06e3c4f13..c0ec5654e9eb 100755 --- a/WebKitTools/Scripts/run-webkit-tests +++ b/WebKitTools/Scripts/run-webkit-tests @@ -309,11 +309,11 @@ for my $test (@tests) { $testPath =~ s|/cygdrive/c|c:|; $testPath =~ s|/|\\|g; } - print OUT "$testPath\n"; + print OUT File::Spec->canonpath("$testPath") . "\n"; } else { openHTTPDIfNeeded(); - my $path = $test; + my $path = File::Spec->canonpath($test); $path =~ s/^http\/tests\///; print OUT "http://127.0.0.1:$httpdPort/$path\n"; }