Skip to content

Commit d09d854

Browse files
committed
Disable test that breaks IAR
1 parent 171a5f8 commit d09d854

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

TESTS/mbed_functional/callback/main.cpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -884,7 +884,10 @@ Case cases[] = {
884884
Case("Testing callbacks with 2 uint64s", test_dispatch2<uint64_t>),
885885
Case("Testing callbacks with 3 uint64s", test_dispatch3<uint64_t>),
886886
Case("Testing callbacks with 4 uint64s", test_dispatch4<uint64_t>),
887+
// IAR currently crashes at link time with this test - skip it as it's well beyond anything needed by real code
888+
#ifndef __ICCARM__
887889
Case("Testing callbacks with 5 uint64s", test_dispatch5<uint64_t>),
890+
#endif
888891
#elif DO_SMALL_TEST
889892
Case("Testing callbacks with 0 uchars", test_dispatch0<unsigned char>),
890893
Case("Testing callbacks with 1 uchars", test_dispatch1<unsigned char>),

0 commit comments

Comments
 (0)