Title: [233372] trunk/Tools
- Revision
- 233372
- Author
- [email protected]
- Date
- 2018-06-29 14:17:35 -0700 (Fri, 29 Jun 2018)
Log Message
run-jsc should print when jsc exits with non-zero status
https://bugs.webkit.org/show_bug.cgi?id=187192
Reviewed by Saam Barati.
* Scripts/run-jsc:
Modified Paths
Diff
Modified: trunk/Tools/ChangeLog (233371 => 233372)
--- trunk/Tools/ChangeLog 2018-06-29 21:00:50 UTC (rev 233371)
+++ trunk/Tools/ChangeLog 2018-06-29 21:17:35 UTC (rev 233372)
@@ -1,3 +1,12 @@
+2018-06-29 Keith Miller <[email protected]>
+
+ run-jsc should print when jsc exits with non-zero status
+ https://bugs.webkit.org/show_bug.cgi?id=187192
+
+ Reviewed by Saam Barati.
+
+ * Scripts/run-jsc:
+
2018-06-29 Aakash Jain <[email protected]>
[ews-build] Add timeout to webkitpy and webkitperl tests
Modified: trunk/Tools/Scripts/run-jsc (233371 => 233372)
--- trunk/Tools/Scripts/run-jsc 2018-06-29 21:00:50 UTC (rev 233371)
+++ trunk/Tools/Scripts/run-jsc 2018-06-29 21:17:35 UTC (rev 233372)
@@ -62,5 +62,8 @@
while ($count--) {
my $status = system("$jsc") >> 8;
- exit $status if $status != 0;
+ if ($status != 0) {
+ print STDERR "\njsc exited with non-zero status: $status\n";
+ exit $status;
+ }
}
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes