diff --git a/examples/chip-tool-darwin/commands/tests/TestCommandBridge.h b/examples/chip-tool-darwin/commands/tests/TestCommandBridge.h index a1746542a7896d..7c22d254bf1cf2 100644 --- a/examples/chip-tool-darwin/commands/tests/TestCommandBridge.h +++ b/examples/chip-tool-darwin/commands/tests/TestCommandBridge.h @@ -19,6 +19,7 @@ #pragma once #include "../common/CHIPCommandBridge.h" +#include #include #include #include @@ -58,6 +59,7 @@ class TestCommandBridge : public CHIPCommandBridge, public ValueChecker, public ConstraintsChecker, public PICSChecker, + public DelayCommands, public SystemCommands { public: TestCommandBridge(const char * _Nonnull commandName) @@ -104,31 +106,24 @@ class TestCommandBridge : public CHIPCommandBridge, NextTest(); } - /////////// DelayCommands-like Interface ///////// - void WaitForMs(unsigned int ms) + void UserPrompt(const char * _Nullable identity, const chip::app::Clusters::LogCommands::Commands::UserPrompt::Type & value) { - chip::app::Clusters::DelayCommands::Commands::WaitForMs::Type value; - value.ms = ms; - WaitForMs(nil, value); + NextTest(); } - void WaitForMs(const char * _Nullable identity, const chip::app::Clusters::DelayCommands::Commands::WaitForMs::Type & value) + /////////// DelayCommands Interface ///////// + void OnWaitForMs() override { - dispatch_after(dispatch_time(DISPATCH_TIME_NOW, value.ms * NSEC_PER_MSEC), mCallbackQueue, ^{ + dispatch_async(mCallbackQueue, ^{ NextTest(); }); } - void UserPrompt(const char * _Nullable identity, const chip::app::Clusters::LogCommands::Commands::UserPrompt::Type & value) - { - NextTest(); - } - - void WaitForCommissionee( - const char * _Nullable identity, const chip::app::Clusters::DelayCommands::Commands::WaitForCommissionee::Type & value) + CHIP_ERROR WaitForCommissionee(const char * _Nullable identity, + const chip::app::Clusters::DelayCommands::Commands::WaitForCommissionee::Type & value) override { CHIPDeviceController * controller = GetCommissioner(identity); - VerifyOrReturn(controller != nil, SetCommandExitStatus(CHIP_ERROR_INCORRECT_STATE)); + VerifyOrReturnError(controller != nil, CHIP_ERROR_INCORRECT_STATE); SetIdentity(identity); @@ -152,6 +147,7 @@ class TestCommandBridge : public CHIPCommandBridge, mConnectedDevices[identity] = device; NextTest(); }]; + return CHIP_NO_ERROR; } /////////// CommissionerCommands-like Interface ///////// @@ -183,8 +179,9 @@ class TestCommandBridge : public CHIPCommandBridge, CHIP_ERROR ContinueOnChipMainThread(CHIP_ERROR err) override { if (CHIP_NO_ERROR == err) { - WaitForMs(0); - + dispatch_async(mCallbackQueue, ^{ + NextTest(); + }); } else { Exit(chip::ErrorStr(err), err); } diff --git a/examples/chip-tool-darwin/templates/tests/partials/test_cluster.zapt b/examples/chip-tool-darwin/templates/tests/partials/test_cluster.zapt index 3453a12282b4ae..3c373686aabec4 100644 --- a/examples/chip-tool-darwin/templates/tests/partials/test_cluster.zapt +++ b/examples/chip-tool-darwin/templates/tests/partials/test_cluster.zapt @@ -91,7 +91,7 @@ class {{filename}}: public TestCommandBridge } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override { return chip::System::Clock::Seconds16(mTimeout.ValueOr({{chip_tests_config_get_default_value "timeout"}})); } @@ -272,14 +272,6 @@ class {{filename}}: public TestCommandBridge {{/if}} {{#if async}} NextTest(); - {{else}} - {{#*inline "minCommandTimeout"~}} - {{#if (isTestOnlyCluster cluster)~}} - {{#if (isStrEqual command "WaitForMs")~}} - {{#chip_tests_item_parameters}}{{#if (isStrEqual name "ms")}}({{definedValue}} / 1000) + {{/if}}{{/chip_tests_item_parameters}} - {{~/if}} - {{~/if}} - {{~/inline}} {{/if}} return CHIP_NO_ERROR; } diff --git a/zzz_generated/chip-tool-darwin/zap-generated/test/Commands.h b/zzz_generated/chip-tool-darwin/zap-generated/test/Commands.h index d4bce9a2226a22..191d0c4615ef34 100644 --- a/zzz_generated/chip-tool-darwin/zap-generated/test/Commands.h +++ b/zzz_generated/chip-tool-darwin/zap-generated/test/Commands.h @@ -452,7 +452,7 @@ class TestAccessControlCluster : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -2135,7 +2135,7 @@ class Test_TC_BI_1_1 : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -2451,7 +2451,7 @@ class Test_TC_BI_2_1 : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -2879,7 +2879,7 @@ class Test_TC_BI_2_2 : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -3217,7 +3217,7 @@ class Test_TC_BOOL_1_1 : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -3450,7 +3450,7 @@ class Test_TC_BOOL_2_1 : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -3610,7 +3610,7 @@ class Test_TC_BRAC_1_1 : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -3865,7 +3865,7 @@ class Test_TC_CC_1_1 : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -5081,7 +5081,7 @@ class Test_TC_CC_2_1 : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -8652,7 +8652,7 @@ class Test_TC_CC_3_1 : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -9575,7 +9575,7 @@ class Test_TC_CC_3_2 : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -10328,7 +10328,7 @@ class Test_TC_CC_3_3 : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -10717,7 +10717,7 @@ class Test_TC_CC_4_1 : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -11375,7 +11375,7 @@ class Test_TC_CC_4_2 : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -12372,7 +12372,7 @@ class Test_TC_CC_4_3 : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -12746,7 +12746,7 @@ class Test_TC_CC_4_4 : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -13113,7 +13113,7 @@ class Test_TC_CC_5_1 : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -13503,7 +13503,7 @@ class Test_TC_CC_5_2 : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -13940,7 +13940,7 @@ class Test_TC_CC_5_3 : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -14291,7 +14291,7 @@ class Test_TC_CC_6_1 : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -14780,7 +14780,7 @@ class Test_TC_CC_6_2 : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -15647,7 +15647,7 @@ class Test_TC_CC_6_3 : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -16336,7 +16336,7 @@ class Test_TC_CC_7_1 : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -17209,7 +17209,7 @@ class Test_TC_CC_7_2 : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -17814,7 +17814,7 @@ class Test_TC_CC_7_3 : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -18173,7 +18173,7 @@ class Test_TC_CC_7_4 : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -18684,7 +18684,7 @@ class Test_TC_CC_8_1 : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -20122,7 +20122,7 @@ class Test_TC_CC_9_1 : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -21621,7 +21621,7 @@ class Test_TC_CC_9_2 : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -22328,7 +22328,7 @@ class Test_TC_CC_9_3 : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -22983,7 +22983,7 @@ class Test_TC_DM_1_1 : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -23483,7 +23483,7 @@ class Test_TC_DM_3_1 : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -23646,7 +23646,7 @@ class Test_TC_DM_2_2 : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -23867,7 +23867,7 @@ class Test_TC_EMR_1_1 : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -24126,7 +24126,7 @@ class Test_TC_ETHDIAG_1_1 : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -24398,7 +24398,7 @@ class Test_TC_ETHDIAG_2_1 : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -24559,7 +24559,7 @@ class Test_TC_FLW_1_1 : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -24892,7 +24892,7 @@ class Test_TC_FLW_2_1 : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -25267,7 +25267,7 @@ class Test_TC_FLW_2_2 : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -25423,7 +25423,7 @@ class Test_TC_GC_1_1 : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -25691,7 +25691,7 @@ class Test_TC_I_1_1 : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -25929,7 +25929,7 @@ class Test_TC_I_2_1 : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -26219,7 +26219,7 @@ class Test_TC_I_2_3 : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -26688,7 +26688,7 @@ class Test_TC_ILL_1_1 : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -26949,7 +26949,7 @@ class Test_TC_ILL_2_1 : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -27187,7 +27187,7 @@ class Test_TC_LVL_1_1 : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -27517,7 +27517,7 @@ class Test_TC_LVL_2_1 : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -28012,7 +28012,7 @@ class Test_TC_LVL_2_2 : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -28532,7 +28532,7 @@ class Test_TC_LVL_3_1 : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -28998,7 +28998,7 @@ class Test_TC_LVL_4_1 : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -29471,7 +29471,7 @@ class Test_TC_LVL_5_1 : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -29860,7 +29860,7 @@ class Test_TC_LVL_6_1 : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -30196,7 +30196,7 @@ class Test_TC_MC_1_1 : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -30467,7 +30467,7 @@ class Test_TC_MC_1_2 : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -30761,7 +30761,7 @@ class Test_TC_MC_1_3 : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -31062,7 +31062,7 @@ class Test_TC_MC_1_4 : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -31352,7 +31352,7 @@ class Test_TC_MC_1_5 : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -31646,7 +31646,7 @@ class Test_TC_MC_1_6 : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -31920,7 +31920,7 @@ class Test_TC_MC_1_7 : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -32222,7 +32222,7 @@ class Test_TC_MC_1_8 : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -32515,7 +32515,7 @@ class Test_TC_MC_1_9 : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -32811,7 +32811,7 @@ class Test_TC_MC_1_10 : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -33125,7 +33125,7 @@ class Test_TC_MC_1_11 : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -33416,7 +33416,7 @@ class Test_TC_MC_1_12 : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -33645,7 +33645,7 @@ class Test_TC_MC_2_1 : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -33912,7 +33912,7 @@ class Test_TC_MC_3_1 : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -34318,7 +34318,7 @@ class Test_TC_MC_3_2 : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -34542,7 +34542,7 @@ class Test_TC_MC_3_3 : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -34917,7 +34917,7 @@ class Test_TC_MC_3_4 : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -35209,7 +35209,7 @@ class Test_TC_MC_3_5 : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -35314,7 +35314,7 @@ class Test_TC_MC_3_6 : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -35399,7 +35399,7 @@ class Test_TC_MC_3_7 : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -35484,7 +35484,7 @@ class Test_TC_MC_3_8 : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -35569,7 +35569,7 @@ class Test_TC_MC_3_9 : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -35654,7 +35654,7 @@ class Test_TC_MC_3_10 : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -35739,7 +35739,7 @@ class Test_TC_MC_3_11 : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -35831,7 +35831,7 @@ class Test_TC_MC_5_1 : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -35941,7 +35941,7 @@ class Test_TC_MC_5_2 : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -36042,7 +36042,7 @@ class Test_TC_MC_5_3 : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -36171,7 +36171,7 @@ class Test_TC_MC_6_1 : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -36366,7 +36366,7 @@ class Test_TC_MC_6_2 : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -36555,7 +36555,7 @@ class Test_TC_MC_6_3 : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -36729,7 +36729,7 @@ class Test_TC_MC_6_4 : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -36932,7 +36932,7 @@ class Test_TC_MC_7_1 : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -37017,7 +37017,7 @@ class Test_TC_MC_7_2 : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -37116,7 +37116,7 @@ class Test_TC_MC_8_1 : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -37286,7 +37286,7 @@ class Test_TC_MC_9_1 : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -37520,7 +37520,7 @@ class Test_TC_MC_10_1 : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -37670,7 +37670,7 @@ class Test_TC_MOD_1_1 : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -37932,7 +37932,7 @@ class Test_TC_MF_1_3 : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -38384,7 +38384,7 @@ class Test_TC_MF_1_4 : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -38818,7 +38818,7 @@ class Test_TC_MF_1_5 : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override { return chip::System::Clock::Seconds16(mTimeout.ValueOr(300)); } @@ -39273,7 +39273,7 @@ class Test_TC_MF_1_6 : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override { return chip::System::Clock::Seconds16(mTimeout.ValueOr(300)); } @@ -39761,7 +39761,7 @@ class Test_TC_MF_1_15 : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override { return chip::System::Clock::Seconds16(mTimeout.ValueOr(500)); } @@ -40313,7 +40313,7 @@ class Test_TC_OCC_1_1 : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -40635,7 +40635,7 @@ class Test_TC_OCC_2_1 : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -40966,7 +40966,7 @@ class Test_TC_OCC_2_2 : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -41158,7 +41158,7 @@ class Test_TC_OO_1_1 : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -41414,7 +41414,7 @@ class Test_TC_OO_2_1 : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -41749,7 +41749,7 @@ class Test_TC_OO_2_2 : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -42674,7 +42674,7 @@ class Test_TC_OO_2_3 : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -43854,7 +43854,7 @@ class Test_TC_OO_2_4 : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -44357,7 +44357,7 @@ class Test_TC_PS_1_1 : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -44622,7 +44622,7 @@ class Test_TC_PS_2_1 : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -44878,7 +44878,7 @@ class Test_TC_PRS_1_1 : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -45177,7 +45177,7 @@ class Test_TC_PRS_2_1 : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -45527,7 +45527,7 @@ class Test_TC_PCC_1_1 : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -46148,7 +46148,7 @@ class Test_TC_PCC_2_1 : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -47511,7 +47511,7 @@ class Test_TC_PCC_2_2 : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -47888,7 +47888,7 @@ class Test_TC_PCC_2_3 : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -48379,7 +48379,7 @@ class Test_TC_PCC_2_4 : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -48774,7 +48774,7 @@ class Test_TC_PSCFG_1_1 : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -49006,7 +49006,7 @@ class Test_TC_RH_1_1 : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -49232,7 +49232,7 @@ class Test_TC_RH_2_1 : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -49459,7 +49459,7 @@ class Test_TC_RH_2_2 : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -49660,7 +49660,7 @@ class Test_TC_SWTCH_2_1 : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -50136,7 +50136,7 @@ class Test_TC_SWTCH_2_2 : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -50618,7 +50618,7 @@ class Test_TC_TM_1_1 : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -50802,7 +50802,7 @@ class Test_TC_TM_2_1 : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -51029,7 +51029,7 @@ class Test_TC_TM_2_2 : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -51229,7 +51229,7 @@ class Test_TC_TSTAT_1_1 : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -51502,7 +51502,7 @@ class Test_TC_TSTAT_2_1 : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -52623,7 +52623,7 @@ class Test_TC_TSTAT_2_2 : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -54000,7 +54000,7 @@ class Test_TC_TSUIC_1_1 : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -54223,7 +54223,7 @@ class Test_TC_TSUIC_2_1 : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -54604,7 +54604,7 @@ class Test_TC_TSUIC_2_2 : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -54985,7 +54985,7 @@ class Test_TC_DIAG_TH_NW_1_1 : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -55821,7 +55821,7 @@ class Test_TC_DIAG_TH_NW_1_2 : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -58134,7 +58134,7 @@ class Test_TC_LC_1_2 : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -58278,7 +58278,7 @@ class Test_TC_WIFIDIAG_1_1 : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -58501,7 +58501,7 @@ class Test_TC_WIFIDIAG_3_1 : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -58637,7 +58637,7 @@ class Test_TC_WNCV_1_1 : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -59279,7 +59279,7 @@ class Test_TC_WNCV_2_1 : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -60634,7 +60634,7 @@ class Test_TC_WNCV_2_2 : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -60918,7 +60918,7 @@ class Test_TC_WNCV_2_3 : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -61411,7 +61411,7 @@ class Test_TC_WNCV_2_4 : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -61565,7 +61565,7 @@ class Test_TC_WNCV_2_5 : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -61924,7 +61924,7 @@ class Test_TC_WNCV_3_1 : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -62738,7 +62738,7 @@ class Test_TC_WNCV_3_2 : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -63456,7 +63456,7 @@ class Test_TC_WNCV_3_3 : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -63925,7 +63925,7 @@ class Test_TC_WNCV_3_4 : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -64239,7 +64239,7 @@ class Test_TC_WNCV_3_5 : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -64576,7 +64576,7 @@ class Test_TC_WNCV_4_1 : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -64955,7 +64955,7 @@ class Test_TC_WNCV_4_2 : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -65275,7 +65275,7 @@ class Test_TC_WNCV_4_3 : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -65507,7 +65507,7 @@ class Test_TC_WNCV_4_4 : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -65845,7 +65845,7 @@ class Test_TC_WNCV_4_5 : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -66201,7 +66201,7 @@ class TV_TargetNavigatorCluster : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -66403,7 +66403,7 @@ class TV_AudioOutputCluster : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -66649,7 +66649,7 @@ class TV_ApplicationLauncherCluster : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -66904,7 +66904,7 @@ class TV_KeypadInputCluster : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -67035,7 +67035,7 @@ class TV_AccountLoginCluster : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -67191,7 +67191,7 @@ class TV_WakeOnLanCluster : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -67354,7 +67354,7 @@ class TV_ApplicationBasicCluster : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -67784,7 +67784,7 @@ class TV_MediaPlaybackCluster : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -68468,7 +68468,7 @@ class TV_ChannelCluster : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -68743,7 +68743,7 @@ class TV_LowPowerCluster : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -68873,7 +68873,7 @@ class TV_ContentLauncherCluster : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -69317,7 +69317,7 @@ class TV_MediaInputCluster : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -73075,7 +73075,7 @@ class TestCluster : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -84686,7 +84686,7 @@ class TestConstraints : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -85186,7 +85186,7 @@ class TestDelayCommands : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -85293,7 +85293,7 @@ class TestLogCommands : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -86163,7 +86163,7 @@ class TestSaveAs : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -88685,7 +88685,7 @@ class TestConfigVariables : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -88859,7 +88859,7 @@ class TestDescriptorCluster : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -89182,7 +89182,7 @@ class TestBasicInformation : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -89839,7 +89839,7 @@ class TestGeneralCommissioning : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -90604,7 +90604,7 @@ class TestIdentifyCluster : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -90758,7 +90758,7 @@ class TestOperationalCredentialsCluster : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -91263,7 +91263,7 @@ class TestModeSelectCluster : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -91977,7 +91977,7 @@ class TestSelfFabricRemoval : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -92287,7 +92287,7 @@ class TestSystemCommands : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -92625,7 +92625,7 @@ class TestBinding : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -93011,7 +93011,7 @@ class TestUserLabelCluster : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -93255,7 +93255,7 @@ class TestArmFailSafe : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -93553,7 +93553,7 @@ class TestMultiAdmin : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -93949,7 +93949,7 @@ class Test_TC_SWDIAG_1_1 : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -94122,7 +94122,7 @@ class Test_TC_SWDIAG_2_1 : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -94232,7 +94232,7 @@ class Test_TC_SWDIAG_3_1 : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -94435,7 +94435,7 @@ class TestSubscribe_OnOff : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -95386,7 +95386,7 @@ class DL_UsersAndCredentials : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -99992,7 +99992,7 @@ class DL_LockUnlock : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -100901,7 +100901,7 @@ class DL_Schedules : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -103671,7 +103671,7 @@ class Test_TC_DL_1_3 : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -104064,7 +104064,7 @@ class TestGroupsCluster : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override @@ -104834,7 +104834,7 @@ class TestGroupKeyManagementCluster : public TestCommandBridge { } // Go on to the next test. - WaitForMs(0); + ContinueOnChipMainThread(CHIP_NO_ERROR); } chip::System::Clock::Timeout GetWaitDuration() const override