- 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
+2006-03-13 Alexey Proskuryakov <ap@nypop.com>
+
+ 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 <darin@apple.com>
Reviewed by John Sullivan.
$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";
}