esp32: add [ignore] tag to some unit test cases for CI

Add ignore tag on unit test cases that are not supported in CI yet
This commit is contained in:
antti
2016-12-14 16:38:45 +08:00
parent 57f911033d
commit f8b5c29346
19 changed files with 43 additions and 43 deletions

View File

@@ -37,7 +37,7 @@ static void test_delay_task(void* p)
vTaskDelete(NULL);
}
TEST_CASE("ets_delay produces correct delay on both CPUs", "[delay]")
TEST_CASE("ets_delay produces correct delay on both CPUs", "[delay][ignore]")
{
int delay_ms = 50;
const delay_test_arg_t args = { .delay_us = delay_ms * 1000, .method = 0 };