File tree Expand file tree Collapse file tree 4 files changed +20
-0
lines changed
mbed_hal/common_tickers_freq
mbedmicro-rtos-mbed/basic Expand file tree Collapse file tree 4 files changed +20
-0
lines changed Original file line number Diff line number Diff line change @@ -104,6 +104,10 @@ void increment_multi_counter(void)
104
104
*/
105
105
void test_case_1x_ticker ()
106
106
{
107
+ #if defined(__ARM_FM)
108
+ TEST_SKIP_MESSAGE (" FastModels not support time drifting test" )
109
+ #endif
110
+
107
111
char _key[11 ] = { };
108
112
char _value[128 ] = { };
109
113
int expected_key = 1 ;
@@ -145,6 +149,10 @@ void test_case_1x_ticker()
145
149
*/
146
150
void test_case_2x_ticker ()
147
151
{
152
+ #if defined(__ARM_FM)
153
+ TEST_SKIP_MESSAGE (" FastModels not support time drifting test" )
154
+ #endif
155
+
148
156
char _key[11 ] = { };
149
157
char _value[128 ] = { };
150
158
int expected_key = 1 ;
Original file line number Diff line number Diff line change @@ -389,6 +389,10 @@ class TimeoutDriftTester {
389
389
template <typename T>
390
390
void test_drift (void )
391
391
{
392
+ #if defined(__ARM_FM)
393
+ TEST_SKIP_MESSAGE (" FastModels not support time drifting test" )
394
+ #endif
395
+
392
396
char _key[11 ] = { };
393
397
char _value[128 ] = { };
394
398
int expected_key = 1 ;
Original file line number Diff line number Diff line change @@ -62,6 +62,10 @@ void ticker_event_handler_stub(const ticker_data_t *const ticker)
62
62
/* Test that the ticker is operating at the frequency it specifies. */
63
63
void ticker_frequency_test ()
64
64
{
65
+ #if defined(__ARM_FM)
66
+ TEST_SKIP_MESSAGE (" FastModels not support time drifting test" )
67
+ #endif
68
+
65
69
char _key[11 ] = { };
66
70
char _value[128 ] = { };
67
71
int expected_key = 1 ;
Original file line number Diff line number Diff line change @@ -65,6 +65,10 @@ void update_tick_thread(Mutex *mutex)
65
65
*/
66
66
void test (void )
67
67
{
68
+ #if defined(__ARM_FM)
69
+ TEST_SKIP_MESSAGE (" FastModels not support time drifting test" )
70
+ #endif
71
+
68
72
char _key[11 ] = { };
69
73
char _value[128 ] = { };
70
74
int expected_key = 1 ;
You can’t perform that action at this time.
0 commit comments