ci: update performance test key to db compatible format

This commit is contained in:
Fu Hanxi
2021-06-17 10:19:28 +08:00
parent 0f2052ca36
commit cb46558c30
2 changed files with 5 additions and 5 deletions

View File

@@ -65,5 +65,5 @@ TEST_CASE("scheduling time test", "[freertos]")
BaseType_t result = xSemaphoreTake(context.end_sema, portMAX_DELAY);
TEST_ASSERT_EQUAL_HEX32(pdTRUE, result);
TEST_PERFORMANCE_LESS_THAN(SCHEDULING_TIME , "scheduling time %d cycles" ,context.cycles_to_sched);
TEST_PERFORMANCE_LESS_THAN(SCHEDULING_TIME , "%d cycles" ,context.cycles_to_sched);
}