mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
Merge branch 'feat/unity_runner_print_stage_number' into 'master'
feat(unity_test): print stage number when unity test run See merge request espressif/esp-idf!28344
This commit is contained in:
commit
3cb3b5b61e
@ -91,6 +91,13 @@ static int multiple_function_option(const test_desc_t *test_ms)
|
||||
}
|
||||
selection = atoi((const char *) cmdline) - 1;
|
||||
if (selection >= 0 && selection < test_ms->test_fn_count) {
|
||||
UnityPrint("Running stage ");
|
||||
UnityPrintNumber(selection + 1);
|
||||
UnityPrint("...");
|
||||
UNITY_PRINT_EOL();
|
||||
// Unit test runner expects to see test name before the test starts
|
||||
UNITY_OUTPUT_FLUSH();
|
||||
|
||||
unity_default_test_run(test_ms->fn[selection], test_ms->name, test_ms->line);
|
||||
} else {
|
||||
UnityPrint("Invalid selection, your should input number 1-");
|
||||
|
Loading…
Reference in New Issue
Block a user