Title: [255624] trunk/Tools
- Revision
- 255624
- Author
- [email protected]
- Date
- 2020-02-03 17:47:26 -0800 (Mon, 03 Feb 2020)
Log Message
results.webkit.org: Support jsc stress tests
https://bugs.webkit.org/show_bug.cgi?id=204096
Rubber-stamped by Aakash Jain.
* Scripts/run-_javascript_core-tests:
(runJSCStressTests): Add pass and failures to reported results.
Modified Paths
Diff
Modified: trunk/Tools/ChangeLog (255623 => 255624)
--- trunk/Tools/ChangeLog 2020-02-04 01:37:40 UTC (rev 255623)
+++ trunk/Tools/ChangeLog 2020-02-04 01:47:26 UTC (rev 255624)
@@ -1,3 +1,13 @@
+2020-02-03 Jonathan Bedard <[email protected]>
+
+ results.webkit.org: Support jsc stress tests
+ https://bugs.webkit.org/show_bug.cgi?id=204096
+
+ Rubber-stamped by Aakash Jain.
+
+ * Scripts/run-_javascript_core-tests:
+ (runJSCStressTests): Add pass and failures to reported results.
+
2020-02-03 Alexey Shvayka <[email protected]>
Make Bugzilla._find_select_element_for_flag more robust
Modified: trunk/Tools/Scripts/run-_javascript_core-tests (255623 => 255624)
--- trunk/Tools/Scripts/run-_javascript_core-tests 2020-02-04 01:37:40 UTC (rev 255623)
+++ trunk/Tools/Scripts/run-_javascript_core-tests 2020-02-04 01:47:26 UTC (rev 255624)
@@ -638,7 +638,6 @@
# Find _javascript_Core directory
chdirWebKit();
-# FIXME: report stress test failures https://bugs.webkit.org/show_bug.cgi?id=204096
runJSCStressTests();
reportTestFailures();
if ($coverage) {
@@ -804,6 +803,11 @@
my $result = system(@jscStressDriverCmd);
exit exitStatus($result) if $result;
+ my @jscStressPassList = readAllLines($jscStressResultsDir . "/passed");
+ foreach my $testSucceeded (@jscStressPassList) {
+ $reportData{$testSucceeded} = {actual => "PASS"};
+ }
+
my @jscStressFailList = readAllLines($jscStressResultsDir . "/failed");
@jscStressFailList = sort @jscStressFailList;
my $numJSCStressFailures = @jscStressFailList;
@@ -813,6 +817,7 @@
print "\n** The following JSC stress test failures have been introduced:\n";
foreach my $testFailure (@jscStressFailList) {
print "\t$testFailure\n";
+ $reportData{$testFailure} = {actual => "FAIL"};
}
}
print "\n";
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes