Title: [90746] trunk/Tools
- Revision
- 90746
- Author
- [email protected]
- Date
- 2011-07-11 08:15:28 -0700 (Mon, 11 Jul 2011)
Log Message
new-run-webkit-tests does not support qt-arm or qt-4.8 results
https://bugs.webkit.org/show_bug.cgi?id=64071
[Qt] NRWT should pick up the right httpd config file
https://bugs.webkit.org/show_bug.cgi?id=64086
Reviewed by Zoltán Herczeg.
* Scripts/run-webkit-tests: Disable NRWT for qt-mac, qt-arm and qt-4.8 platforms until fix.
(useNewRunWebKitTests):
Modified Paths
Diff
Modified: trunk/Tools/ChangeLog (90745 => 90746)
--- trunk/Tools/ChangeLog 2011-07-11 14:38:40 UTC (rev 90745)
+++ trunk/Tools/ChangeLog 2011-07-11 15:15:28 UTC (rev 90746)
@@ -1,3 +1,16 @@
+2011-07-11 Csaba Osztrogonác <[email protected]>
+
+ new-run-webkit-tests does not support qt-arm or qt-4.8 results
+ https://bugs.webkit.org/show_bug.cgi?id=64071
+
+ [Qt] NRWT should pick up the right httpd config file
+ https://bugs.webkit.org/show_bug.cgi?id=64086
+
+ Reviewed by Zoltán Herczeg.
+
+ * Scripts/run-webkit-tests: Disable NRWT for qt-mac, qt-arm and qt-4.8 platforms until fix.
+ (useNewRunWebKitTests):
+
2011-07-11 Kenichi Ishibashi <[email protected]>
Add TestNetscapePlugIn/Tests/FormValue.cpp to DRT build files
Modified: trunk/Tools/Scripts/run-webkit-tests (90745 => 90746)
--- trunk/Tools/Scripts/run-webkit-tests 2011-07-11 14:38:40 UTC (rev 90745)
+++ trunk/Tools/Scripts/run-webkit-tests 2011-07-11 15:15:28 UTC (rev 90746)
@@ -83,7 +83,9 @@
# will remove the --PORT argument from @ARGV, causing us to fail to pass it to the test harness.
# NRWT Windows support still needs work: https://bugs.webkit.org/show_bug.cgi?id=38756
- return ((isLeopard() or isSnowLeopard() or isQt() or isGtk()) and !usingWebKit2() and !usingLeaks());
+
+ # NRWT doesn't support qt-mac, qt-arm and qt-4.8 platforms now: https://bugs.webkit.org/show_bug.cgi?id=64071 and https://bugs.webkit.org/show_bug.cgi?id=64086
+ return ((isLeopard() or isSnowLeopard() or (isQt() and !isDarwin() and !isARM() and (getQtVersion() ne "4.8")) or isGtk()) and !usingWebKit2() and !usingLeaks());
}
my $harnessName = "old-run-webkit-tests";
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes