Skip to content

Commit 3c14dd4

Browse files
author
David Saada
committed
Fix test skip message to not enough heap
1 parent 4075d6e commit 3c14dd4

File tree

1 file changed

+1
-1
lines changed
  • features/storage/TESTS/blockdevice/general_block_device

1 file changed

+1
-1
lines changed

features/storage/TESTS/blockdevice/general_block_device/main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -349,7 +349,7 @@ void test_multi_threads()
349349
char *dummy;
350350

351351
rtos::Thread **bd_thread = new (std::nothrow) rtos::Thread*[TEST_NUM_OF_THREADS];
352-
TEST_SKIP_UNLESS_MESSAGE((*bd_thread) != NULL, "no block device found.");
352+
TEST_SKIP_UNLESS_MESSAGE((*bd_thread) != NULL, "not enough heap to run test.");
353353
memset(bd_thread, 0, TEST_NUM_OF_THREADS * sizeof(rtos::Thread *));
354354

355355
for (i_ind = 0; i_ind < TEST_NUM_OF_THREADS; i_ind++) {

0 commit comments

Comments
 (0)