Changeset 252190 in webkit


Ignore:
Timestamp:
Nov 7, 2019 10:30:55 AM (4 years ago)
Author:
aakash_jain@apple.com
Message:

[ews] rename RunJavaScriptCoreTestsToT to RunJSCTestsWithoutPatch
https://bugs.webkit.org/show_bug.cgi?id=203959

Reviewed by Alexey Proskuryakov.

  • BuildSlaveSupport/ews-build/steps.py:

(RunJSCTestsWithoutPatch): Renamed.

  • BuildSlaveSupport/ews-build/steps_unittest.py: Updated unit-tests.
Location:
trunk/Tools
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/BuildSlaveSupport/ews-build/steps.py

    r252184 r252190  
    968968        else:
    969969            self.setProperty('patchFailedTests', True)
    970             self.build.addStepsAfterCurrentStep([UnApplyPatchIfRequired(), CompileJSCToT(), RunJavaScriptCoreTestsToT()])
     970            self.build.addStepsAfterCurrentStep([UnApplyPatchIfRequired(), CompileJSCToT(), RunJSCTestsWithoutPatch()])
    971971        return rc
    972972
    973973
    974 class RunJavaScriptCoreTestsToT(RunJavaScriptCoreTests):
    975     name = 'jscore-test-tot'
     974class RunJSCTestsWithoutPatch(RunJavaScriptCoreTests):
     975    name = 'jscore-test-without-patch'
    976976    jsonFileName = 'jsc_results.json'
    977977
  • trunk/Tools/BuildSlaveSupport/ews-build/steps_unittest.py

    r252184 r252190  
    4040                   DownloadBuiltProduct, DownloadBuiltProductFromMaster, ExtractBuiltProduct, ExtractTestResults, InstallGtkDependencies, InstallWpeDependencies, KillOldProcesses,
    4141                   PrintConfiguration, ReRunAPITests, ReRunJavaScriptCoreTests, ReRunWebKitTests, RunAPITests, RunAPITestsWithoutPatch,
    42                    RunBindingsTests, RunBuildWebKitOrgUnitTests, RunEWSBuildbotCheckConfig, RunEWSUnitTests, RunJavaScriptCoreTests, RunJavaScriptCoreTestsToT, RunWebKit1Tests,
     42                   RunBindingsTests, RunBuildWebKitOrgUnitTests, RunEWSBuildbotCheckConfig, RunEWSUnitTests, RunJavaScriptCoreTests, RunJSCTestsWithoutPatch, RunWebKit1Tests,
    4343                   RunWebKitPerlTests, RunWebKitPyTests, RunWebKitTests, RunWebKitTestsWithoutPatch, TestWithFailureCount, Trigger, TransferToS3, UnApplyPatchIfRequired,
    4444                   UpdateWorkingDirectory, UploadBuiltProduct, UploadTestResults, ValidatePatch)
     
    10861086
    10871087
    1088 class TestRunJavaScriptCoreTestsToT(BuildStepMixinAdditions, unittest.TestCase):
     1088class TestRunJSCTestsWithoutPatch(BuildStepMixinAdditions, unittest.TestCase):
    10891089    def setUp(self):
    10901090        self.longMessage = True
     
    10961096
    10971097    def test_success(self):
    1098         self.setupStep(RunJavaScriptCoreTestsToT())
     1098        self.setupStep(RunJSCTestsWithoutPatch())
    10991099        self.setProperty('fullPlatform', 'jsc-only')
    11001100        self.setProperty('configuration', 'release')
     
    11111111
    11121112    def test_failure(self):
    1113         self.setupStep(RunJavaScriptCoreTestsToT())
     1113        self.setupStep(RunJSCTestsWithoutPatch())
    11141114        self.setProperty('fullPlatform', 'jsc-only')
    11151115        self.setProperty('configuration', 'debug')
  • trunk/Tools/ChangeLog

    r252185 r252190  
     12019-11-07  Aakash Jain  <aakash_jain@apple.com>
     2
     3        [ews] rename RunJavaScriptCoreTestsToT to RunJSCTestsWithoutPatch
     4        https://bugs.webkit.org/show_bug.cgi?id=203959
     5
     6        Reviewed by Alexey Proskuryakov.
     7
     8        * BuildSlaveSupport/ews-build/steps.py:
     9        (RunJSCTestsWithoutPatch): Renamed.
     10        * BuildSlaveSupport/ews-build/steps_unittest.py: Updated unit-tests.
     11
    1122019-11-07  Alex Christensen  <achristensen@webkit.org>
    213
Note: See TracChangeset for help on using the changeset viewer.