File tree Expand file tree Collapse file tree 3 files changed +10
-14
lines changed
mbed_hal/common_tickers_freq
mbedmicro-rtos-mbed/basic Expand file tree Collapse file tree 3 files changed +10
-14
lines changed Original file line number Diff line number Diff line change @@ -145,10 +145,6 @@ void test_case_1x_ticker()
145
145
*/
146
146
void test_case_2x_ticker ()
147
147
{
148
- #if defined(__ARM_FM)
149
- TEST_SKIP_MESSAGE (" FastModels not support time drifting test" )
150
- #endif
151
-
152
148
char _key[11 ] = { };
153
149
char _value[128 ] = { };
154
150
int expected_key = 1 ;
Original file line number Diff line number Diff line change 33
33
#error [NOT_SUPPORTED] test not supported
34
34
#endif
35
35
36
+ // FastModels not support time drifting test
37
+ #if defined(__ARM_FM)
38
+ #error [NOT_SUPPORTED] test not supported
39
+ #endif
40
+
36
41
#define US_PER_S 1000000
37
42
38
43
using namespace utest ::v1;
@@ -62,10 +67,6 @@ void ticker_event_handler_stub(const ticker_data_t *const ticker)
62
67
/* Test that the ticker is operating at the frequency it specifies. */
63
68
void ticker_frequency_test ()
64
69
{
65
- #if defined(__ARM_FM)
66
- TEST_SKIP_MESSAGE (" FastModels not support time drifting test" )
67
- #endif
68
-
69
70
char _key[11 ] = { };
70
71
char _value[128 ] = { };
71
72
int expected_key = 1 ;
Original file line number Diff line number Diff line change 27
27
#error [NOT_SUPPORTED] test not supported
28
28
#endif
29
29
30
+ // FastModels not support time drifting test
31
+ #if defined(__ARM_FM)
32
+ #error [NOT_SUPPORTED] test not supported
33
+ #endif
34
+
30
35
using utest::v1::Case;
31
36
32
37
#if defined(__CORTEX_M23) || defined(__CORTEX_M33)
33
38
#define TEST_STACK_SIZE 512
34
- #elif defined(__ARM_FM)
35
- #define TEST_STACK_SIZE 512
36
39
#else
37
40
#define TEST_STACK_SIZE 256
38
41
#endif
@@ -67,10 +70,6 @@ void update_tick_thread(Mutex *mutex)
67
70
*/
68
71
void test (void )
69
72
{
70
- #if defined(__ARM_FM)
71
- TEST_SKIP_MESSAGE (" FastModels not support time drifting test" )
72
- #endif
73
-
74
73
char _key[11 ] = { };
75
74
char _value[128 ] = { };
76
75
int expected_key = 1 ;
You can’t perform that action at this time.
0 commit comments