From e8a39f82a1edc323dd54500ce9c1e5ca93f7d3fa Mon Sep 17 00:00:00 2001 From: Qinghao Shi Date: Mon, 11 Mar 2019 10:38:00 +0000 Subject: [PATCH] TESTS: skip timing accuracy test on FastModels --- TESTS/mbed_platform/wait_ns/main.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/TESTS/mbed_platform/wait_ns/main.cpp b/TESTS/mbed_platform/wait_ns/main.cpp index 99daca770c..29ce36eef0 100644 --- a/TESTS/mbed_platform/wait_ns/main.cpp +++ b/TESTS/mbed_platform/wait_ns/main.cpp @@ -23,6 +23,11 @@ #include "hal/us_ticker_api.h" #include "hal/lp_ticker_api.h" +//FastModels not support timing test +#if defined(__ARM_FM) +#error [NOT_SUPPORTED] test not supported +#endif + using namespace utest::v1; /* This test is created based on the test for Timer class.