Skip to content

Commit 5a2e7e3

Browse files
committed
Fix minor issues
1 parent 1b45d00 commit 5a2e7e3

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

features/storage/TESTS/blockdevice/general_block_device/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Getting started with the Mbed OS block device test
22

3-
Mbed OS block device test is used to test exsiting and new block devices.
3+
Mbed OS block device test is used to test existing and new block devices.
44

55
You can find more information about the Mbed OS block device and other related pieces of the Mbed OS storage stack [in the storage overview](https://os.mbed.com/docs/latest/reference/storage.html).
66

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

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,8 @@ void basic_erase_program_read_test(BlockDevice *block_device, bd_size_t block_si
7878
val_rand = rand();
7979
if ( (0xff & val_rand) != read_block[i_ind] ) {
8080
utest_printf("\n Assert Failed Buf Read - block:size: %llx:%llu \n", block, block_size);
81-
utest_printf("\n pos: %llu, exp: %02x, act: %02x, wrt: %02x \n", i_ind, (0xff & val_rand), read_block[i_ind],
81+
utest_printf("\n pos: %llu, exp: %02x, act: %02x, wrt: %02x \n", i_ind, (0xff & val_rand),
82+
read_block[i_ind],
8283
write_block[i_ind] );
8384
}
8485
TEST_ASSERT_EQUAL(0xff & val_rand, read_block[i_ind]);
@@ -213,7 +214,5 @@ Specification specification(test_setup, cases);
213214

214215
int main()
215216
{
216-
//mbed_trace_init();
217-
utest_printf("MAIN STARTS\n");
218217
return !Harness::run(specification);
219218
}

0 commit comments

Comments
 (0)