Skip to content

Commit 8eebcff

Browse files
committed
Disable heap and stack tests for Cortex A
These tests are not compatible with Cortex A due to __get_MSP usage.
1 parent 048a896 commit 8eebcff

File tree

1 file changed

+5
-0
lines changed
  • TESTS/mbedmicro-rtos-mbed/heap_and_stack

1 file changed

+5
-0
lines changed

TESTS/mbedmicro-rtos-mbed/heap_and_stack/main.cpp

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,11 @@
1414
* See the License for the specific language governing permissions and
1515
* limitations under the License.
1616
*/
17+
18+
#if defined(TARGET_CORTEX_A)
19+
  #error [NOT_SUPPORTED] This function not supported for this target
20+
#endif
21+
1722
#include <stdio.h>
1823
#include <stdlib.h>
1924
#include <string.h>

0 commit comments

Comments
 (0)