Fix GREENTEA_SETUP() call in not time drifting tests.

In these tests GREENTEA_SETUP() is incorrectly called with "timing_drift_auto" instead of "default_auto".
pull/11023/head
Przemyslaw Stekiel 2019-06-05 13:32:13 +02:00 committed by Evelyne Donnaes
parent 75a12be43f
commit 1ddebcd9b7
4 changed files with 4 additions and 4 deletions

View File

@ -218,7 +218,7 @@ Case cases[] = {
utest::v1::status_t greentea_test_setup(const size_t number_of_cases)
{
GREENTEA_SETUP(test_timeout, "timing_drift_auto");
GREENTEA_SETUP(test_timeout, "default_auto");
return utest::v1::greentea_test_setup_handler(number_of_cases);
}

View File

@ -69,7 +69,7 @@ Case cases[] = {
utest::v1::status_t greentea_test_setup(const size_t number_of_cases)
{
GREENTEA_SETUP(10, "timing_drift_auto");
GREENTEA_SETUP(10, "default_auto");
return utest::v1::greentea_test_setup_handler(number_of_cases);
}

View File

@ -107,7 +107,7 @@ Case cases[] = {
utest::v1::status_t greentea_test_setup(const size_t number_of_cases)
{
GREENTEA_SETUP(10, "timing_drift_auto");
GREENTEA_SETUP(10, "default_auto");
return utest::v1::greentea_test_setup_handler(number_of_cases);
}

View File

@ -211,7 +211,7 @@ Case cases[] = {
utest::v1::status_t greentea_test_setup(const size_t number_of_cases)
{
GREENTEA_SETUP(test_timeout, "timing_drift_auto");
GREENTEA_SETUP(test_timeout, "default_auto");
return utest::v1::greentea_test_setup_handler(number_of_cases);
}