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.
2 parents b09a843 + 7bfa6bd commit 4a2cfbeCopy full SHA for 4a2cfbe
components/storage/blockdevice/COMPONENT_SD/TESTS/filesystem/parallel/main.cpp
@@ -154,6 +154,9 @@ void read_file_data (char count)
154
155
void test_thread_access_test()
156
{
157
+ char *dummy = new (std::nothrow) char[OS_STACK_SIZE * MBED_THREAD_COUNT];
158
+ delete[] dummy;
159
+ TEST_SKIP_UNLESS_MESSAGE(dummy, "Not enough memory to run test");
160
161
Thread *data[MBED_THREAD_COUNT];
162
int res = bd.init();
0 commit comments