From 880f5459a8008532862b076515a962d9938747d0 Mon Sep 17 00:00:00 2001 From: Luiz Augusto von Dentz Date: Wed, 4 Nov 2020 11:25:15 -0800 Subject: [PATCH] mgmt-tester: Don't run tests which command fails This indicates that emulator don't support the test and until proper support is added the test shall not be run. --- tools/mgmt-tester.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/mgmt-tester.c b/tools/mgmt-tester.c index a67860da4..f6eac30a5 100644 --- a/tools/mgmt-tester.c +++ b/tools/mgmt-tester.c @@ -6304,7 +6304,7 @@ static void command_generic_callback(uint8_t status, uint16_t length, test->send_opcode, mgmt_errstr(status), status); if (status != test->expect_status) { - tester_test_failed(); + tester_test_abort(); return; } -- 2.47.3