Title: [282288] trunk/Tools
Revision
282288
Author
aakash_j...@apple.com
Date
2021-09-10 12:48:31 -0700 (Fri, 10 Sep 2021)

Log Message

[build.webkit.org] Remove ./ from command invocations
https://bugs.webkit.org/show_bug.cgi?id=230165

Reviewed by Ryan Haddad.

* CISupport/build-webkit-org/steps.py: Removed ./ from command invocations to be consistent with EWS configuration.
* CISupport/build-webkit-org/steps_unittest.py: Updatd unit-tests.

Modified Paths

Diff

Modified: trunk/Tools/CISupport/build-webkit-org/steps.py (282287 => 282288)


--- trunk/Tools/CISupport/build-webkit-org/steps.py	2021-09-10 19:23:36 UTC (rev 282287)
+++ trunk/Tools/CISupport/build-webkit-org/steps.py	2021-09-10 19:48:31 UTC (rev 282288)
@@ -164,7 +164,7 @@
 class InstallWin32Dependencies(shell.Compile):
     description = ["installing dependencies"]
     descriptionDone = ["installed dependencies"]
-    command = ["perl", "./Tools/Scripts/update-webkit-auxiliary-libs"]
+    command = ["perl", "Tools/Scripts/update-webkit-auxiliary-libs"]
 
 
 class KillOldProcesses(shell.Compile):
@@ -171,7 +171,7 @@
     name = "kill-old-processes"
     description = ["killing old processes"]
     descriptionDone = ["killed old processes"]
-    command = ["python3", "./Tools/CISupport/kill-old-processes", "buildbot"]
+    command = ["python3", "Tools/CISupport/kill-old-processes", "buildbot"]
 
 
 class TriggerCrashLogSubmission(shell.Compile):
@@ -226,7 +226,7 @@
     name = "jhbuild"
     description = ["updating gtk dependencies"]
     descriptionDone = ["updated gtk dependencies"]
-    command = ["perl", "./Tools/Scripts/update-webkitgtk-libs", WithProperties("--%(configuration)s")]
+    command = ["perl", "Tools/Scripts/update-webkitgtk-libs", WithProperties("--%(configuration)s")]
     haltOnFailure = True
 
 
@@ -234,7 +234,7 @@
     name = "jhbuild"
     description = ["updating wpe dependencies"]
     descriptionDone = ["updated wpe dependencies"]
-    command = ["perl", "./Tools/Scripts/update-webkitwpe-libs", WithProperties("--%(configuration)s")]
+    command = ["perl", "Tools/Scripts/update-webkitwpe-libs", WithProperties("--%(configuration)s")]
     haltOnFailure = True
 
 
@@ -261,7 +261,7 @@
 
 
 class CompileWebKit(shell.Compile):
-    command = ["perl", "./Tools/Scripts/build-webkit", WithProperties("--%(configuration)s")]
+    command = ["perl", "Tools/Scripts/build-webkit", WithProperties("--%(configuration)s")]
     env = {'MFLAGS': ''}
     name = "compile-webkit"
     description = ["compiling"]
@@ -312,15 +312,15 @@
 
 
 class CompileLLINTCLoop(CompileWebKit):
-    command = ["perl", "./Tools/Scripts/build-jsc", "--cloop", WithProperties("--%(configuration)s")]
+    command = ["perl", "Tools/Scripts/build-jsc", "--cloop", WithProperties("--%(configuration)s")]
 
 
 class Compile32bitJSC(CompileWebKit):
-    command = ["perl", "./Tools/Scripts/build-jsc", "--32-bit", WithProperties("--%(configuration)s")]
+    command = ["perl", "Tools/Scripts/build-jsc", "--32-bit", WithProperties("--%(configuration)s")]
 
 
 class CompileJSCOnly(CompileWebKit):
-    command = ["perl", "./Tools/Scripts/build-jsc", WithProperties("--%(configuration)s")]
+    command = ["perl", "Tools/Scripts/build-jsc", WithProperties("--%(configuration)s")]
 
 
 class InstallBuiltProduct(shell.ShellCommand):
@@ -346,7 +346,7 @@
 
 
 class GenerateJSCBundle(shell.ShellCommand):
-    command = ["./Tools/Scripts/generate-bundle", "--builder-name", WithProperties("%(buildername)s"),
+    command = ["Tools/Scripts/generate-bundle", "--builder-name", WithProperties("%(buildername)s"),
                "--bundle=jsc", "--syslibs=bundle-all", WithProperties("--platform=%(fullPlatform)s"),
                WithProperties("--%(configuration)s"), WithProperties("--revision=%(got_revision)s"),
                "--remote-config-file", "../../remote-jsc-bundle-upload-config.json"]
@@ -357,7 +357,7 @@
 
 
 class GenerateMiniBrowserBundle(shell.ShellCommand):
-    command = ["./Tools/Scripts/generate-bundle", "--builder-name", WithProperties("%(buildername)s"),
+    command = ["Tools/Scripts/generate-bundle", "--builder-name", WithProperties("%(buildername)s"),
                "--bundle=MiniBrowser", WithProperties("--platform=%(fullPlatform)s"),
                WithProperties("--%(configuration)s"), WithProperties("--revision=%(got_revision)s"),
                "--remote-config-file", "../../remote-minibrowser-bundle-upload-config.json"]
@@ -395,7 +395,7 @@
 
 
 class DownloadBuiltProduct(shell.ShellCommand):
-    command = ["python3", "./Tools/CISupport/download-built-product",
+    command = ["python3", "Tools/CISupport/download-built-product",
         WithProperties("--platform=%(platform)s"), WithProperties("--%(configuration)s"),
         WithProperties(S3URL + "archives.webkit.org/%(fullPlatform)s-%(architecture)s-%(configuration)s/%(got_revision)s.zip")]
     name = "download-built-product"
@@ -449,7 +449,7 @@
     descriptionDone = ["jscore-tests"]
     jsonFileName = "jsc_results.json"
     command = [
-        "perl", "./Tools/Scripts/run-_javascript_core-tests",
+        "perl", "Tools/Scripts/run-_javascript_core-tests",
         "--no-build", "--no-fail-fast",
         "--json-output={0}".format(jsonFileName),
         WithProperties("--%(configuration)s"),
@@ -512,7 +512,7 @@
     description = ["test262-tests running"]
     descriptionDone = ["test262-tests"]
     failedTestsFormatString = "%d Test262 test%s failed"
-    command = ["perl", "./Tools/Scripts/test262-runner", "--verbose", WithProperties("--%(configuration)s")]
+    command = ["perl", "Tools/Scripts/test262-runner", "--verbose", WithProperties("--%(configuration)s")]
     test_summary_re = re.compile(r'^\! NEW FAIL')
 
     def start(self):
@@ -536,7 +536,7 @@
     description = ["layout-tests running"]
     descriptionDone = ["layout-tests"]
     resultDirectory = "layout-test-results"
-    command = ["python3", "./Tools/Scripts/run-webkit-tests",
+    command = ["python3", "Tools/Scripts/run-webkit-tests",
                "--no-build",
                "--no-show-results",
                "--no-new-test-results",
@@ -646,7 +646,7 @@
     resultDirectory = os.path.join(RunWebKitTests.resultDirectory, "dashboard-layout-test-results")
 
     def start(self):
-        self.setCommand(self.command + ["--layout-tests-directory", "./Tools/CISupport/build-webkit-org/public_html/dashboard/Scripts/tests"])
+        self.setCommand(self.command + ["--layout-tests-directory", "Tools/CISupport/build-webkit-org/public_html/dashboard/Scripts/tests"])
         return RunWebKitTests.start(self)
 
 
@@ -658,7 +658,7 @@
     logfiles = {"json": jsonFileName}
     command = [
         "python3",
-        "./Tools/Scripts/run-api-tests",
+        "Tools/Scripts/run-api-tests",
         "--no-build",
         "--json-output={0}".format(jsonFileName),
         WithProperties("--%(configuration)s"),
@@ -726,7 +726,7 @@
     descriptionDone = ["python-tests"]
     command = [
         "python3",
-        "./Tools/Scripts/test-webkitpy",
+        "Tools/Scripts/test-webkitpy",
         "--verbose",
         "--buildbot-master", CURRENT_HOSTNAME,
         "--builder-name", WithProperties("%(buildername)s"),
@@ -751,7 +751,7 @@
     descriptionDone = ["lldb-webkit-tests"]
     command = [
         "python3",
-        "./Tools/Scripts/test-lldb-webkit",
+        "Tools/Scripts/test-lldb-webkit",
         "--verbose",
         "--no-build",
         WithProperties("--%(configuration)s"),
@@ -763,7 +763,7 @@
     name = "webkitperl-test"
     description = ["perl-tests running"]
     descriptionDone = ["perl-tests"]
-    command = ["perl", "./Tools/Scripts/test-webkitperl"]
+    command = ["perl", "Tools/Scripts/test-webkitperl"]
     failedTestsFormatString = "%d perl test%s failed"
     test_summary_re = re.compile(r'^Failed \d+/\d+ test programs\. (?P<count>\d+)/\d+ subtests failed\.')  # e.g.: Failed 2/19 test programs. 5/363 subtests failed.
 
@@ -788,7 +788,7 @@
     descriptionDone = ["cloop-tests"]
     jsonFileName = "jsc_cloop.json"
     command = [
-        "perl", "./Tools/Scripts/run-_javascript_core-tests",
+        "perl", "Tools/Scripts/run-_javascript_core-tests",
         "--no-build",
         "--no-jsc-stress", "--no-fail-fast",
         "--json-output={0}".format(jsonFileName),
@@ -829,7 +829,7 @@
     descriptionDone = ["32bit-jsc-tests"]
     jsonFileName = "jsc_32bit.json"
     command = [
-        "perl", "./Tools/Scripts/run-_javascript_core-tests",
+        "perl", "Tools/Scripts/run-_javascript_core-tests",
         "--32-bit", "--no-build",
         "--no-fail-fast", "--no-jit", "--no-testair", "--no-testb3", "--no-testmasm",
         "--json-output={0}".format(jsonFileName),
@@ -868,7 +868,7 @@
     name = "bindings-generation-tests"
     description = ["bindings-tests running"]
     descriptionDone = ["bindings-tests"]
-    command = ["python3", "./Tools/Scripts/run-bindings-tests"]
+    command = ["python3", "Tools/Scripts/run-bindings-tests"]
 
 
 class RunBuiltinsTests(shell.Test):
@@ -875,7 +875,7 @@
     name = "builtins-generator-tests"
     description = ["builtins-generator-tests running"]
     descriptionDone = ["builtins-generator-tests"]
-    command = ["python", "./Tools/Scripts/run-builtins-generator-tests"]
+    command = ["python", "Tools/Scripts/run-builtins-generator-tests"]
 
 
 class RunGLibAPITests(shell.Test):
@@ -945,11 +945,11 @@
 
 
 class RunGtkAPITests(RunGLibAPITests):
-    command = ["python3", "./Tools/Scripts/run-gtk-tests", WithProperties("--%(configuration)s")]
+    command = ["python3", "Tools/Scripts/run-gtk-tests", WithProperties("--%(configuration)s")]
 
 
 class RunWPEAPITests(RunGLibAPITests):
-    command = ["python3", "./Tools/Scripts/run-wpe-tests", WithProperties("--%(configuration)s")]
+    command = ["python3", "Tools/Scripts/run-wpe-tests", WithProperties("--%(configuration)s")]
 
 
 class RunWebDriverTests(shell.Test):
@@ -957,7 +957,7 @@
     description = ["webdriver-tests running"]
     descriptionDone = ["webdriver-tests"]
     jsonFileName = "webdriver_tests.json"
-    command = ["python", "./Tools/Scripts/run-webdriver-tests", "--json-output={0}".format(jsonFileName), WithProperties("--%(configuration)s")]
+    command = ["python", "Tools/Scripts/run-webdriver-tests", "--json-output={0}".format(jsonFileName), WithProperties("--%(configuration)s")]
     logfiles = {"json": jsonFileName}
 
     def start(self):
@@ -1029,7 +1029,7 @@
     name = "perf-test"
     description = ["perf-tests running"]
     descriptionDone = ["perf-tests"]
-    command = ["python3", "./Tools/Scripts/run-perf-tests",
+    command = ["python3", "Tools/Scripts/run-perf-tests",
                "--output-json-path", "perf-test-results.json",
                "--worker-config-json-path", "../../perf-test-config.json",
                "--no-show-results",
@@ -1075,7 +1075,7 @@
     name = "benchmark-test"
     description = ["benchmark tests running"]
     descriptionDone = ["benchmark tests"]
-    command = ["python", "./Tools/Scripts/browserperfdash-benchmark", "--allplans",
+    command = ["python", "Tools/Scripts/browserperfdash-benchmark", "--allplans",
                "--config-file", "../../browserperfdash-benchmark-config.txt",
                "--browser-version", WithProperties("r%(got_revision)s")]
 
@@ -1096,7 +1096,7 @@
 
 
 class ArchiveTestResults(shell.ShellCommand):
-    command = ["python3", "./Tools/CISupport/test-result-archive",
+    command = ["python3", "Tools/CISupport/test-result-archive",
                WithProperties("--platform=%(platform)s"), WithProperties("--%(configuration)s"), "archive"]
     name = "archive-test-results"
     description = ["archiving test results"]

Modified: trunk/Tools/CISupport/build-webkit-org/steps_unittest.py (282287 => 282288)


--- trunk/Tools/CISupport/build-webkit-org/steps_unittest.py	2021-09-10 19:23:36 UTC (rev 282287)
+++ trunk/Tools/CISupport/build-webkit-org/steps_unittest.py	2021-09-10 19:48:31 UTC (rev 282288)
@@ -201,7 +201,7 @@
                 workdir='wkdir',
                 timeout=1200,
                 logEnviron=True,
-                command=['python3', './Tools/Scripts/run-bindings-tests'],
+                command=['python3', 'Tools/Scripts/run-bindings-tests'],
             ) + 0,
         )
         self.expectOutcome(result=SUCCESS, state_string='bindings-tests')
@@ -214,7 +214,7 @@
                 workdir='wkdir',
                 timeout=1200,
                 logEnviron=True,
-                command=['python3', './Tools/Scripts/run-bindings-tests'],
+                command=['python3', 'Tools/Scripts/run-bindings-tests'],
             ) + 2
             + ExpectShell.log('stdio', stdout='FAIL: (JS) JSTestInterface.cpp'),
         )
@@ -237,7 +237,7 @@
                 workdir='wkdir',
                 timeout=1200,
                 logEnviron=True,
-                command=['python3', './Tools/CISupport/kill-old-processes', 'buildbot'],
+                command=['python3', 'Tools/CISupport/kill-old-processes', 'buildbot'],
             ) + 0,
         )
         self.expectOutcome(result=SUCCESS, state_string='killed old processes')
@@ -250,7 +250,7 @@
                 workdir='wkdir',
                 timeout=1200,
                 logEnviron=True,
-                command=['python3', './Tools/CISupport/kill-old-processes', 'buildbot'],
+                command=['python3', 'Tools/CISupport/kill-old-processes', 'buildbot'],
             ) + 2
             + ExpectShell.log('stdio', stdout='Unexpected error.'),
         )
@@ -323,7 +323,7 @@
             ExpectShell(workdir='wkdir',
                         timeout=1200,
                         logEnviron=True,
-                        command=['perl', './Tools/Scripts/update-webkitgtk-libs', '--release'],
+                        command=['perl', 'Tools/Scripts/update-webkitgtk-libs', '--release'],
                         )
             + 0,
         )
@@ -339,7 +339,7 @@
                 workdir='wkdir',
                 timeout=1200,
                 logEnviron=True,
-                command=['perl', './Tools/Scripts/update-webkitgtk-libs', '--debug'],
+                command=['perl', 'Tools/Scripts/update-webkitgtk-libs', '--debug'],
             ) + 2
             + ExpectShell.log('stdio', stdout='Unexpected error.'),
         )
@@ -364,7 +364,7 @@
                 workdir='wkdir',
                 timeout=1200,
                 logEnviron=True,
-                command=['perl', './Tools/Scripts/update-webkitwpe-libs', '--release'],
+                command=['perl', 'Tools/Scripts/update-webkitwpe-libs', '--release'],
             ) + 0,
         )
         self.expectOutcome(result=SUCCESS, state_string='updated wpe dependencies')
@@ -379,7 +379,7 @@
                 workdir='wkdir',
                 timeout=1200,
                 logEnviron=True,
-                command=['perl', './Tools/Scripts/update-webkitwpe-libs', '--release'],
+                command=['perl', 'Tools/Scripts/update-webkitwpe-libs', '--release'],
             ) + 2
             + ExpectShell.log('stdio', stdout='Unexpected error.'),
         )
@@ -404,7 +404,7 @@
                 workdir='wkdir',
                 timeout=1200,
                 logEnviron=True,
-                command=['perl', './Tools/Scripts/build-webkit', '--release'],
+                command=['perl', 'Tools/Scripts/build-webkit', '--release'],
             ) + 0,
         )
         self.expectOutcome(result=SUCCESS, state_string='compiled')
@@ -420,7 +420,7 @@
                 workdir='wkdir',
                 timeout=1200,
                 logEnviron=True,
-                command=['perl', './Tools/Scripts/build-webkit', '--release', '--prefix=/app/webkit/WebKitBuild/Release/install', '--gtk'],
+                command=['perl', 'Tools/Scripts/build-webkit', '--release', '--prefix=/app/webkit/WebKitBuild/Release/install', '--gtk'],
             ) + 0,
         )
         self.expectOutcome(result=SUCCESS, state_string='compiled')
@@ -436,7 +436,7 @@
                 workdir='wkdir',
                 timeout=1200,
                 logEnviron=True,
-                command=['perl', './Tools/Scripts/build-webkit', '--release', '--wpe'],
+                command=['perl', 'Tools/Scripts/build-webkit', '--release', '--wpe'],
             ) + 0,
         )
         self.expectOutcome(result=SUCCESS, state_string='compiled')
@@ -451,7 +451,7 @@
                 workdir='wkdir',
                 timeout=1200,
                 logEnviron=True,
-                command=['perl', './Tools/Scripts/build-webkit', '--debug'],
+                command=['perl', 'Tools/Scripts/build-webkit', '--debug'],
             ) + 2
             + ExpectShell.log('stdio', stdout='1 error generated.'),
         )
@@ -476,7 +476,7 @@
                 workdir='wkdir',
                 timeout=1200,
                 logEnviron=True,
-                command=['perl', './Tools/Scripts/build-jsc', '--release'],
+                command=['perl', 'Tools/Scripts/build-jsc', '--release'],
             ) + 0,
         )
         self.expectOutcome(result=SUCCESS, state_string='compiled')
@@ -490,7 +490,7 @@
             ExpectShell(
                 workdir='wkdir',
                 logEnviron=True,
-                command=['perl', './Tools/Scripts/build-jsc', '--debug'],
+                command=['perl', 'Tools/Scripts/build-jsc', '--debug'],
             ) + 2
             + ExpectShell.log('stdio', stdout='1 error generated.'),
         )
@@ -552,7 +552,7 @@
                 workdir='wkdir',
                 timeout=1200,
                 logEnviron=True,
-                command=['perl', './Tools/Scripts/test-webkitperl'],
+                command=['perl', 'Tools/Scripts/test-webkitperl'],
             ) + 0,
         )
         self.expectOutcome(result=SUCCESS, state_string='webkitperl-test')
@@ -565,7 +565,7 @@
                 workdir='wkdir',
                 timeout=1200,
                 logEnviron=True,
-                command=['perl', './Tools/Scripts/test-webkitperl'],
+                command=['perl', 'Tools/Scripts/test-webkitperl'],
             ) + 2
             + ExpectShell.log('stdio', stdout='''Failed tests:  1-3, 5-7, 9, 11-13
 Files=40, Tests=630,  4 wallclock secs ( 0.16 usr  0.09 sys +  2.78 cusr  0.64 csys =  3.67 CPU)
@@ -599,7 +599,7 @@
                 workdir='wkdir',
                 timeout=1200,
                 logEnviron=False,
-                command=['python3', './Tools/Scripts/test-webkitpy', '--verbose',
+                command=['python3', 'Tools/Scripts/test-webkitpy', '--verbose',
                          '--buildbot-master', CURRENT_HOSTNAME,
                          '--builder-name', 'WebKitPy-Tests-EWS',
                          '--build-number', '101', '--buildbot-worker', 'ews100',
@@ -617,7 +617,7 @@
                 workdir='wkdir',
                 timeout=1200,
                 logEnviron=False,
-                command=['python3', './Tools/Scripts/test-webkitpy', '--verbose',
+                command=['python3', 'Tools/Scripts/test-webkitpy', '--verbose',
                          '--buildbot-master', CURRENT_HOSTNAME,
                          '--builder-name', 'WebKitPy-Tests-EWS',
                          '--build-number', '101', '--buildbot-worker', 'ews100',
@@ -635,7 +635,7 @@
                 workdir='wkdir',
                 timeout=1200,
                 logEnviron=False,
-                command=['python3', './Tools/Scripts/test-webkitpy', '--verbose',
+                command=['python3', 'Tools/Scripts/test-webkitpy', '--verbose',
                          '--buildbot-master', CURRENT_HOSTNAME,
                          '--builder-name', 'WebKitPy-Tests-EWS',
                          '--build-number', '101', '--buildbot-worker', 'ews100',
@@ -654,7 +654,7 @@
                 workdir='wkdir',
                 timeout=1200,
                 logEnviron=False,
-                command=['python3', './Tools/Scripts/test-webkitpy', '--verbose',
+                command=['python3', 'Tools/Scripts/test-webkitpy', '--verbose',
                          '--buildbot-master', CURRENT_HOSTNAME,
                          '--builder-name', 'WebKitPy-Tests-EWS',
                          '--build-number', '101', '--buildbot-worker', 'ews100',
@@ -673,7 +673,7 @@
                 workdir='wkdir',
                 timeout=1200,
                 logEnviron=False,
-                command=['python3', './Tools/Scripts/test-webkitpy', '--verbose',
+                command=['python3', 'Tools/Scripts/test-webkitpy', '--verbose',
                          '--buildbot-master', CURRENT_HOSTNAME,
                          '--builder-name', 'WebKitPy-Tests-EWS',
                          '--build-number', '101', '--buildbot-worker', 'ews100',
@@ -702,7 +702,7 @@
                 workdir='wkdir',
                 timeout=1200,
                 logEnviron=True,
-                command=['python3', './Tools/Scripts/test-lldb-webkit', '--verbose', '--no-build', '--release'],
+                command=['python3', 'Tools/Scripts/test-lldb-webkit', '--verbose', '--no-build', '--release'],
             ) + 0,
         )
         self.expectOutcome(result=SUCCESS, state_string='lldb-webkit-test')
@@ -716,7 +716,7 @@
                 workdir='wkdir',
                 timeout=1200,
                 logEnviron=True,
-                command=['python3', './Tools/Scripts/test-lldb-webkit', '--verbose', '--no-build', '--release'],
+                command=['python3', 'Tools/Scripts/test-lldb-webkit', '--verbose', '--no-build', '--release'],
             ) + 2,
         )
         self.expectOutcome(result=FAILURE, state_string='lldb-webkit-test (failure)')
@@ -730,7 +730,7 @@
                 workdir='wkdir',
                 timeout=1200,
                 logEnviron=True,
-                command=['python3', './Tools/Scripts/test-lldb-webkit', '--verbose', '--no-build', '--release'],
+                command=['python3', 'Tools/Scripts/test-lldb-webkit', '--verbose', '--no-build', '--release'],
             ) + 2
             + ExpectShell.log('stdio', stdout='FAILED (failures=2, errors=0)'),
         )
@@ -745,7 +745,7 @@
                 workdir='wkdir',
                 timeout=1200,
                 logEnviron=True,
-                command=['python3', './Tools/Scripts/test-lldb-webkit', '--verbose', '--no-build', '--release'],
+                command=['python3', 'Tools/Scripts/test-lldb-webkit', '--verbose', '--no-build', '--release'],
             ) + 2
             + ExpectShell.log('stdio', stdout='FAILED (failures=0, errors=2)'),
         )
@@ -760,7 +760,7 @@
                 workdir='wkdir',
                 timeout=1200,
                 logEnviron=True,
-                command=['python3', './Tools/Scripts/test-lldb-webkit', '--verbose', '--no-build', '--release'],
+                command=['python3', 'Tools/Scripts/test-lldb-webkit', '--verbose', '--no-build', '--release'],
             ) + 2
             + ExpectShell.log('stdio', stdout='FAILED (failures=30, errors=2)'),
         )
@@ -793,7 +793,7 @@
                 workdir='wkdir',
                 timeout=1200,
                 logEnviron=False,
-                command=['python3', './Tools/Scripts/run-webkit-tests', '--no-build', '--no-show-results',
+                command=['python3', 'Tools/Scripts/run-webkit-tests', '--no-build', '--no-show-results',
                          '--no-new-test-results', '--clobber-old-results',
                          '--builder-name', 'iOS-14-Simulator-WK2-Tests-EWS',
                          '--build-number', '101', '--buildbot-worker', 'ews100',
@@ -817,7 +817,7 @@
                 workdir='wkdir',
                 timeout=1200,
                 logEnviron=False,
-                command=['python3', './Tools/Scripts/run-webkit-tests', '--no-build', '--no-show-results',
+                command=['python3', 'Tools/Scripts/run-webkit-tests', '--no-build', '--no-show-results',
                          '--no-new-test-results', '--clobber-old-results',
                          '--builder-name', 'iOS-14-Simulator-WK2-Tests-EWS',
                          '--build-number', '101', '--buildbot-worker', 'ews100',
@@ -844,7 +844,7 @@
                 workdir='wkdir',
                 timeout=1200,
                 logEnviron=False,
-                command=['python3', './Tools/Scripts/run-webkit-tests', '--no-build', '--no-show-results',
+                command=['python3', 'Tools/Scripts/run-webkit-tests', '--no-build', '--no-show-results',
                          '--no-new-test-results', '--clobber-old-results',
                          '--builder-name', 'iOS-14-Simulator-WK2-Tests-EWS',
                          '--build-number', '101', '--buildbot-worker', 'ews100',
@@ -869,7 +869,7 @@
                 workdir='wkdir',
                 timeout=1200,
                 logEnviron=False,
-                command=['python3', './Tools/Scripts/run-webkit-tests', '--no-build', '--no-show-results',
+                command=['python3', 'Tools/Scripts/run-webkit-tests', '--no-build', '--no-show-results',
                          '--no-new-test-results', '--clobber-old-results',
                          '--builder-name', 'iOS-14-Simulator-WK2-Tests-EWS',
                          '--build-number', '101', '--buildbot-worker', 'ews100',
@@ -894,7 +894,7 @@
                 workdir='wkdir',
                 timeout=1200,
                 logEnviron=False,
-                command=['python3', './Tools/Scripts/run-webkit-tests', '--no-build', '--no-show-results',
+                command=['python3', 'Tools/Scripts/run-webkit-tests', '--no-build', '--no-show-results',
                          '--no-new-test-results', '--clobber-old-results',
                          '--builder-name', 'iOS-14-Simulator-WK2-Tests-EWS',
                          '--build-number', '101', '--buildbot-worker', 'ews100',
@@ -936,7 +936,7 @@
             ExpectShell(
                 workdir='wkdir',
                 logEnviron=False,
-                command=['python3', './Tools/Scripts/run-webkit-tests', '--no-build', '--no-show-results',
+                command=['python3', 'Tools/Scripts/run-webkit-tests', '--no-build', '--no-show-results',
                          '--no-new-test-results', '--clobber-old-results',
                          '--builder-name', 'Apple-iOS-14-Simulator-Debug-Build',
                          '--build-number', '101', '--buildbot-worker', 'bot100',
@@ -959,7 +959,7 @@
             ExpectShell(
                 workdir='wkdir',
                 logEnviron=False,
-                command=['python3', './Tools/Scripts/run-webkit-tests', '--no-build', '--no-show-results',
+                command=['python3', 'Tools/Scripts/run-webkit-tests', '--no-build', '--no-show-results',
                          '--no-new-test-results', '--clobber-old-results',
                          '--builder-name', 'Apple-iOS-14-Simulator-Debug-Build',
                          '--build-number', '101', '--buildbot-worker', 'bot100',
@@ -1004,7 +1004,7 @@
         self.expectRemoteCommands(
             ExpectShell(workdir='wkdir',
                         logEnviron=False,
-                        command=['perl', './Tools/Scripts/run-_javascript_core-tests', '--no-build', '--no-fail-fast', '--json-output={0}'.format(self.jsonFileName), '--release', '--builder-name', 'JSC-Tests', '--build-number', '101', '--buildbot-worker', 'bot100', '--buildbot-master', CURRENT_HOSTNAME, '--report', 'https://results.webkit.org'],
+                        command=['perl', 'Tools/Scripts/run-_javascript_core-tests', '--no-build', '--no-fail-fast', '--json-output={0}'.format(self.jsonFileName), '--release', '--builder-name', 'JSC-Tests', '--build-number', '101', '--buildbot-worker', 'bot100', '--buildbot-master', CURRENT_HOSTNAME, '--report', 'https://results.webkit.org'],
                         logfiles={'json': self.jsonFileName},
                         env={'RESULTS_SERVER_API_KEY': 'test-api-key'}
                         )
@@ -1018,7 +1018,7 @@
         self.expectRemoteCommands(
             ExpectShell(workdir='wkdir',
                         logEnviron=False,
-                        command=['perl', './Tools/Scripts/run-_javascript_core-tests', '--no-build', '--no-fail-fast', '--json-output={0}'.format(self.jsonFileName), '--debug', '--builder-name', 'JSC-Tests', '--build-number', '101', '--buildbot-worker', 'bot100', '--buildbot-master', CURRENT_HOSTNAME, '--report', 'https://results.webkit.org'],
+                        command=['perl', 'Tools/Scripts/run-_javascript_core-tests', '--no-build', '--no-fail-fast', '--json-output={0}'.format(self.jsonFileName), '--debug', '--builder-name', 'JSC-Tests', '--build-number', '101', '--buildbot-worker', 'bot100', '--buildbot-master', CURRENT_HOSTNAME, '--report', 'https://results.webkit.org'],
                         logfiles={'json': self.jsonFileName},
                         env={'RESULTS_SERVER_API_KEY': 'test-api-key'}
                         )

Modified: trunk/Tools/ChangeLog (282287 => 282288)


--- trunk/Tools/ChangeLog	2021-09-10 19:23:36 UTC (rev 282287)
+++ trunk/Tools/ChangeLog	2021-09-10 19:48:31 UTC (rev 282288)
@@ -1,3 +1,13 @@
+2021-09-10  Aakash Jain  <aakash_j...@apple.com>
+
+        [build.webkit.org] Remove ./ from command invocations
+        https://bugs.webkit.org/show_bug.cgi?id=230165
+
+        Reviewed by Ryan Haddad.
+
+        * CISupport/build-webkit-org/steps.py: Removed ./ from command invocations to be consistent with EWS configuration.
+        * CISupport/build-webkit-org/steps_unittest.py: Updatd unit-tests.
+
 2021-09-10  Alex Christensen  <achristen...@webkit.org>
 
         Add infrastructure to allow TLS during PCM tests
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to