From 60f4d9efa0ac12196d108cc3424d96a9c7153cb1 Mon Sep 17 00:00:00 2001 From: int_szyk Date: Fri, 9 Aug 2019 09:21:06 +0200 Subject: [PATCH] Add flag to optional run --- TESTS/events/equeue/main.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/TESTS/events/equeue/main.cpp b/TESTS/events/equeue/main.cpp index 4e48a64e7a31..c5365ee4eedb 100644 --- a/TESTS/events/equeue/main.cpp +++ b/TESTS/events/equeue/main.cpp @@ -15,6 +15,10 @@ * limitations under the License. */ +#ifndef MBED_EXTENDED_TESTS +#error [NOT_SUPPORTED] When running on CI this test is disabled due to limiting testing time. +#else + #include "utest/utest.h" #include "unity/unity.h" #include "greentea-client/test_env.h" @@ -1018,3 +1022,5 @@ int main() { Harness::run(specification); } + +#endif // MBED_EXTENDED_TESTS