From bfd8bfdbc9da99abf201db79331afa5ea4c07cc4 Mon Sep 17 00:00:00 2001 From: jeromecoutant Date: Mon, 17 Jun 2019 13:07:20 +0200 Subject: [PATCH] Wrong timeout value in greentea tests --- .../storage/TESTS/blockdevice/general_block_device/main.cpp | 2 +- features/storage/TESTS/filesystem/general_filesystem/main.cpp | 2 +- features/storage/TESTS/kvstore/static_tests/main.cpp | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/features/storage/TESTS/blockdevice/general_block_device/main.cpp b/features/storage/TESTS/blockdevice/general_block_device/main.cpp index 32911f741c..cfe324780b 100644 --- a/features/storage/TESTS/blockdevice/general_block_device/main.cpp +++ b/features/storage/TESTS/blockdevice/general_block_device/main.cpp @@ -769,7 +769,7 @@ static const char *prefix[] = {"SPIF ", "QSPIF ", "DATAFLASH ", "SD ", "FLASHIAP int main() { - GREENTEA_SETUP(3000, "default_auto"); + GREENTEA_SETUP(300, "default_auto"); // We want to replicate our test cases to different types size_t num_cases = sizeof(template_cases) / sizeof(template_case_t); diff --git a/features/storage/TESTS/filesystem/general_filesystem/main.cpp b/features/storage/TESTS/filesystem/general_filesystem/main.cpp index a2279e69f6..732d0ca94e 100644 --- a/features/storage/TESTS/filesystem/general_filesystem/main.cpp +++ b/features/storage/TESTS/filesystem/general_filesystem/main.cpp @@ -2095,7 +2095,7 @@ Case cases[] = { utest::v1::status_t greentea_test_setup(const size_t number_of_cases) { - GREENTEA_SETUP(3000, "default_auto"); + GREENTEA_SETUP(300, "default_auto"); return greentea_test_setup_handler(number_of_cases); } diff --git a/features/storage/TESTS/kvstore/static_tests/main.cpp b/features/storage/TESTS/kvstore/static_tests/main.cpp index a063d5c4d6..7de3e4527d 100644 --- a/features/storage/TESTS/kvstore/static_tests/main.cpp +++ b/features/storage/TESTS/kvstore/static_tests/main.cpp @@ -977,7 +977,7 @@ Case cases[] = { utest::v1::status_t greentea_test_setup(const size_t number_of_cases) { - GREENTEA_SETUP(3000, "default_auto"); + GREENTEA_SETUP(300, "default_auto"); return greentea_test_setup_handler(number_of_cases); }