|
22 | 22 | #include "mbed.h"
|
23 | 23 |
|
24 | 24 | #if !defined(MBED_THREAD_STATS_ENABLED)
|
25 |
| - #warning [NOT_SUPPORTED] test not supported |
| 25 | +#warning [NOT_SUPPORTED] test not supported |
26 | 26 | #endif
|
27 | 27 |
|
28 | 28 | using namespace utest::v1;
|
@@ -63,9 +63,9 @@ void test_case_single_thread_stats()
|
63 | 63 | TEST_ASSERT_EQUAL(1, (count-old_count));
|
64 | 64 |
|
65 | 65 | for(int i = 0; i < count; i++) {
|
66 |
| - if(0 == strcmp(stats[i].thread_name, "Th1")) { |
67 |
| - TEST_ASSERT_EQUAL(TEST_STACK_SIZE, stats[i].thread_stack_size); |
68 |
| - TEST_ASSERT_EQUAL(osPriorityNormal, stats[i].thread_priority); |
| 66 | + if(0 == strcmp(stats[i].name, "Th1")) { |
| 67 | + TEST_ASSERT_EQUAL(TEST_STACK_SIZE, stats[i].stack_size); |
| 68 | + TEST_ASSERT_EQUAL(osPriorityNormal, stats[i].priority); |
69 | 69 | break;
|
70 | 70 | }
|
71 | 71 | }
|
@@ -98,13 +98,13 @@ void test_case_multi_threads_blocked()
|
98 | 98 | int count = mbed_stats_thread_get_each(stats, MAX_THREAD_STATS);
|
99 | 99 | TEST_ASSERT_EQUAL(2, (count-old_count));
|
100 | 100 | for(int i = 0; i < count; i++) {
|
101 |
| - if(0 == strcmp(stats[i].thread_name, "Th2")) { |
102 |
| - TEST_ASSERT_EQUAL(TEST_STACK_SIZE, stats[i].thread_stack_size); |
103 |
| - TEST_ASSERT_EQUAL(osPriorityNormal1, stats[i].thread_priority); |
104 |
| - TEST_ASSERT_EQUAL(osThreadBlocked, stats[i].thread_state); |
105 |
| - } else if(0 == strcmp (stats[i].thread_name, "Th1")) { |
106 |
| - TEST_ASSERT_EQUAL(TEST_STACK_SIZE, stats[i].thread_stack_size); |
107 |
| - TEST_ASSERT_EQUAL(osPriorityNormal, stats[i].thread_priority); |
| 101 | + if(0 == strcmp(stats[i].name, "Th2")) { |
| 102 | + TEST_ASSERT_EQUAL(TEST_STACK_SIZE, stats[i].stack_size); |
| 103 | + TEST_ASSERT_EQUAL(osPriorityNormal1, stats[i].priority); |
| 104 | + TEST_ASSERT_EQUAL(osThreadBlocked, stats[i].state); |
| 105 | + } else if(0 == strcmp (stats[i].name, "Th1")) { |
| 106 | + TEST_ASSERT_EQUAL(TEST_STACK_SIZE, stats[i].stack_size); |
| 107 | + TEST_ASSERT_EQUAL(osPriorityNormal, stats[i].priority); |
108 | 108 | }
|
109 | 109 | }
|
110 | 110 |
|
@@ -137,13 +137,13 @@ void test_case_multi_threads_terminate()
|
137 | 137 | TEST_ASSERT_EQUAL(2, (count-old_count));
|
138 | 138 |
|
139 | 139 | for(int i = 0; i < count; i++) {
|
140 |
| - if(0 == strcmp(stats[i].thread_name, "Th2")) { |
141 |
| - TEST_ASSERT_EQUAL(TEST_STACK_SIZE, stats[i].thread_stack_size); |
142 |
| - TEST_ASSERT_EQUAL(osPriorityNormal2, stats[i].thread_priority); |
143 |
| - } else if(0 == strcmp(stats[i].thread_name, "Th1")) { |
144 |
| - TEST_ASSERT_EQUAL(TEST_STACK_SIZE, stats[i].thread_stack_size); |
145 |
| - TEST_ASSERT_EQUAL(osPriorityNormal1, stats[i].thread_priority); |
146 |
| - TEST_ASSERT_EQUAL(osThreadBlocked, stats[i].thread_state); |
| 140 | + if(0 == strcmp(stats[i].name, "Th2")) { |
| 141 | + TEST_ASSERT_EQUAL(TEST_STACK_SIZE, stats[i].stack_size); |
| 142 | + TEST_ASSERT_EQUAL(osPriorityNormal2, stats[i].priority); |
| 143 | + } else if(0 == strcmp(stats[i].name, "Th1")) { |
| 144 | + TEST_ASSERT_EQUAL(TEST_STACK_SIZE, stats[i].stack_size); |
| 145 | + TEST_ASSERT_EQUAL(osPriorityNormal1, stats[i].priority); |
| 146 | + TEST_ASSERT_EQUAL(osThreadBlocked, stats[i].state); |
147 | 147 | }
|
148 | 148 | }
|
149 | 149 |
|
|
0 commit comments