RESOLVED FIXED 157270
Add fail-fast option to run-javascriptcore-tests
https://bugs.webkit.org/show_bug.cgi?id=157270
Summary Add fail-fast option to run-javascriptcore-tests
Srinivasan Vijayaraghavan
Reported 2016-05-02 11:04:03 PDT
Add fail-fast option to run-javascriptcore-tests
Attachments
Patch (2.92 KB, patch)
2016-05-02 11:06 PDT, Srinivasan Vijayaraghavan
no flags
Patch (2.92 KB, patch)
2016-05-02 11:27 PDT, Srinivasan Vijayaraghavan
no flags
Patch (2.92 KB, patch)
2016-05-02 13:19 PDT, Srinivasan Vijayaraghavan
no flags
Srinivasan Vijayaraghavan
Comment 1 2016-05-02 11:06:17 PDT
Geoffrey Garen
Comment 2 2016-05-02 11:11:30 PDT
Comment on attachment 277912 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=277912&action=review r=me > Tools/Scripts/run-javascriptcore-tests:211 > + if ($failFast) { > + exit exitStatus($testapiResult) if $testapiResult; Since we have two conditions here, I think it's clearer to merge them into one if statement: if ($testapiResult && $failFast) { exit... }
Srinivasan Vijayaraghavan
Comment 3 2016-05-02 11:27:05 PDT
Srinivasan Vijayaraghavan
Comment 4 2016-05-02 13:09:50 PDT
(In reply to comment #2) > Comment on attachment 277912 [details] > Patch > > View in context: > https://bugs.webkit.org/attachment.cgi?id=277912&action=review > > r=me > > > Tools/Scripts/run-javascriptcore-tests:211 > > + if ($failFast) { > > + exit exitStatus($testapiResult) if $testapiResult; > > Since we have two conditions here, I think it's clearer to merge them into > one if statement: > > if ($testapiResult && $failFast) { > exit... > } Thanks! I've fixed this.
Srinivasan Vijayaraghavan
Comment 5 2016-05-02 13:19:01 PDT
Ryan Haddad
Comment 6 2016-05-02 13:51:02 PDT
Comment on attachment 277928 [details] Patch mac-debug failures seem to be unrelated, marking cq+
WebKit Commit Bot
Comment 7 2016-05-02 14:41:33 PDT
Comment on attachment 277928 [details] Patch Clearing flags on attachment: 277928 Committed r200339: <http://trac.webkit.org/changeset/200339>
WebKit Commit Bot
Comment 8 2016-05-02 14:41:37 PDT
All reviewed patches have been landed. Closing bug.
Note You need to log in before you can comment on or make changes to this bug.