We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6a178a9 commit c996b01Copy full SHA for c996b01
TESTS/mbed_functional/callback/main.cpp
@@ -884,7 +884,10 @@ Case cases[] = {
884
Case("Testing callbacks with 2 uint64s", test_dispatch2<uint64_t>),
885
Case("Testing callbacks with 3 uint64s", test_dispatch3<uint64_t>),
886
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__
889
Case("Testing callbacks with 5 uint64s", test_dispatch5<uint64_t>),
890
+#endif
891
#elif DO_SMALL_TEST
892
Case("Testing callbacks with 0 uchars", test_dispatch0<unsigned char>),
893
Case("Testing callbacks with 1 uchars", test_dispatch1<unsigned char>),
0 commit comments