diff --git a/src/controller/python/test/test_scripts/cirque_restart_remote_device.py b/src/controller/python/test/test_scripts/cirque_restart_remote_device.py index 4cc773d52a1d35..292c8a7bc2ee29 100644 --- a/src/controller/python/test/test_scripts/cirque_restart_remote_device.py +++ b/src/controller/python/test/test_scripts/cirque_restart_remote_device.py @@ -61,7 +61,7 @@ def run(self): try: client.connect(self.remote_ip, self.ssh_port, self.user, self.password) client.exec_command( - ("kill \"$(ps aux | grep -E \'out/debug/standalone/{}\' | grep -v grep | grep -v gdb | " + ("kill \"$(ps aux | grep -E \'out/debug/{}\' | grep -v grep | grep -v gdb | " "awk \'{{print $2}}\')\"").format(self.remote_server_app)) time.sleep(1) stdin, stdout, stderr = client.exec_command( @@ -75,7 +75,7 @@ def run(self): restart_remote_device_command = ( "CHIPCirqueDaemon.py -- run gdb -batch -return-child-result -q -ex \"set pagination off\" " "-ex run -ex \"thread apply all bt\" --args {} {}").format( - os.path.join(CHIP_REPO, "out/debug/standalone", self.remote_server_app), self.extra_args) + os.path.join(CHIP_REPO, "out/debug", self.remote_server_app), self.extra_args) client.exec_command(restart_remote_device_command) finally: diff --git a/src/test_driver/linux-cirque/SubscriptionResumptionCapacityTest.py b/src/test_driver/linux-cirque/SubscriptionResumptionCapacityTest.py index af6544d8856020..04214ecea39de1 100755 --- a/src/test_driver/linux-cirque/SubscriptionResumptionCapacityTest.py +++ b/src/test_driver/linux-cirque/SubscriptionResumptionCapacityTest.py @@ -52,7 +52,7 @@ TEST_EXTPANID = "fedcba9876543210" TEST_DISCRIMINATOR = 3840 MATTER_DEVELOPMENT_PAA_ROOT_CERTS = "credentials/development/paa-root-certs" -TEST_END_DEVICE_APP = "chip-all-clusters-app" +TEST_END_DEVICE_APP = "standalone/chip-all-clusters-app" TEST_SUBSCRIPTION_CAPACITY = 3 @@ -119,7 +119,7 @@ def run_subscription_resumption_capacity_test(self): ("CHIPCirqueDaemon.py -- run gdb -batch -return-child-result -q -ex \"set pagination off\" " "-ex run -ex \"thread apply all bt\" --args {} --thread --discriminator {} " "--subscription-capacity {}").format( - os.path.join(CHIP_REPO, "out/debug/standalone", TEST_END_DEVICE_APP), TEST_DISCRIMINATOR, + os.path.join(CHIP_REPO, "out/debug", TEST_END_DEVICE_APP), TEST_DISCRIMINATOR, TEST_SUBSCRIPTION_CAPACITY)) self.reset_thread_devices(server_ids) diff --git a/src/test_driver/linux-cirque/SubscriptionResumptionTest.py b/src/test_driver/linux-cirque/SubscriptionResumptionTest.py index 18fa1205289efd..271a3b3deb0cfe 100755 --- a/src/test_driver/linux-cirque/SubscriptionResumptionTest.py +++ b/src/test_driver/linux-cirque/SubscriptionResumptionTest.py @@ -46,7 +46,7 @@ TEST_EXTPANID = "fedcba9876543210" TEST_DISCRIMINATOR = 3840 MATTER_DEVELOPMENT_PAA_ROOT_CERTS = "credentials/development/paa-root-certs" -TEST_END_DEVICE_APP = "chip-all-clusters-app" +TEST_END_DEVICE_APP = "standalone/chip-all-clusters-app" DEVICE_CONFIG = { 'device0': { @@ -96,7 +96,7 @@ def run_subscription_resumption_test(self): server_device_id, ("CHIPCirqueDaemon.py -- run gdb -batch -return-child-result -q -ex \"set pagination off\" " "-ex run -ex \"thread apply all bt\" --args {} --thread --discriminator {}").format( - os.path.join(CHIP_REPO, "out/debug/standalone", TEST_END_DEVICE_APP), TEST_DISCRIMINATOR)) + os.path.join(CHIP_REPO, "out/debug", TEST_END_DEVICE_APP), TEST_DISCRIMINATOR)) self.reset_thread_devices(server_ids) diff --git a/src/test_driver/linux-cirque/SubscriptionResumptionTimeoutTest.py b/src/test_driver/linux-cirque/SubscriptionResumptionTimeoutTest.py index d916504cfb1e9a..2d4d6bfddb9e4f 100755 --- a/src/test_driver/linux-cirque/SubscriptionResumptionTimeoutTest.py +++ b/src/test_driver/linux-cirque/SubscriptionResumptionTimeoutTest.py @@ -48,7 +48,7 @@ TEST_EXTPANID = "fedcba9876543210" TEST_DISCRIMINATOR = 3840 MATTER_DEVELOPMENT_PAA_ROOT_CERTS = "credentials/development/paa-root-certs" -TEST_END_DEVICE_APP = "chip-all-clusters-app" +TEST_END_DEVICE_APP = "standalone/chip-all-clusters-app" DEVICE_CONFIG = { 'device0': { @@ -97,7 +97,7 @@ def run_subscription_resumption_timeout_test(self): ("CHIPCirqueDaemon.py -- run gdb -batch -return-child-result -q -ex \"set pagination off\" " "-ex run -ex \"thread apply all bt\" --args {} --thread --discriminator {} " "--subscription-resumption-retry-interval 5").format( - os.path.join(CHIP_REPO, "out/debug/standalone", TEST_END_DEVICE_APP), TEST_DISCRIMINATOR)) + os.path.join(CHIP_REPO, "out/debug", TEST_END_DEVICE_APP), TEST_DISCRIMINATOR)) self.reset_thread_devices(server_ids)