Skip to content

Commit

Permalink
Test changing an order of tests execution
Browse files Browse the repository at this point in the history
  • Loading branch information
jlatusek committed May 20, 2024
1 parent c7cd3d7 commit 4ca07bf
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/test_driver/nrfconnect/main/runner.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,9 @@ extern "C" int main(void)
VerifyOrDie(settings_subsys_init() == 0);

LOG_INF("Starting CHIP tests!");
int status = RunRegisteredUnitTests();
int status = 0;
status += chip::test::RunAllTests();
status += RunRegisteredUnitTests();
LOG_INF("CHIP test status: %d", status);

_exit(status);
Expand Down

0 comments on commit 4ca07bf

Please sign in to comment.