Changeset 201215 in webkit


Ignore:
Timestamp:
May 20, 2016 10:09:17 AM (8 years ago)
Author:
commit-queue@webkit.org
Message:

Use clearer names for JSON output of javascriptcore test results
https://bugs.webkit.org/show_bug.cgi?id=157921

Patch by Srinivasan Vijayaraghavan <svijayaraghavan@apple.com> on 2016-05-20
Reviewed by Alexey Proskuryakov.

"failures" and "apiTestResult" were somewhat ambiguous names.

  • Scripts/run-javascriptcore-tests:

(runJSCStressTests): "failures" -> "stressFailures", "apiTestResult" -> "allApiTestsPassed".

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r201214 r201215  
     12016-05-20  Srinivasan Vijayaraghavan  <svijayaraghavan@apple.com>
     2
     3        Use clearer names for JSON output of javascriptcore test results
     4        https://bugs.webkit.org/show_bug.cgi?id=157921
     5
     6        Reviewed by Alexey Proskuryakov.
     7
     8        "failures" and "apiTestResult" were somewhat ambiguous names.
     9       
     10        * Scripts/run-javascriptcore-tests:
     11        (runJSCStressTests): "failures" -> "stressFailures", "apiTestResult" -> "allApiTestsPassed".
     12
    1132016-05-20  Chris Dumez  <cdumez@apple.com>
    214
  • trunk/Tools/Scripts/run-javascriptcore-tests

    r201158 r201215  
    212212    if (defined($jsonFileName)) {
    213213        my $apiStatus = ($exitStatus == 0)? JSON::PP::true: JSON::PP::false;
    214         $jsonData{'apiTestResult'} = $apiStatus;
     214        $jsonData{'allApiTestsPassed'} = $apiStatus;
    215215    }
    216216
     
    350350
    351351    if (defined($jsonFileName)) {
    352         $jsonData{'failures'} = \@jscStressFailList;
     352        $jsonData{'stressTestFailures'} = \@jscStressFailList;
    353353    }
    354354
Note: See TracChangeset for help on using the changeset viewer.