Skip to content
Snippets Groups Projects
Unverified Commit 6d8fd279 authored by Gaëtan Harter's avatar Gaëtan Harter
Browse files

tests/periph_eeprom: remove useless casts

Casting to `const char *` is not necessary as input, the type are
already the right ones.

It could not be before as `result` was with the wrong type.
parent c029fcde
No related branches found
No related tags found
No related merge requests found
......@@ -226,7 +226,7 @@ static int cmd_test(int argc, char **argv)
char result[4];
ret = eeprom_read(0, (uint8_t *)result, 4);
assert(strncmp((const char *)result, (const char *)expected, 4) == 0);
assert(strncmp(result, expected, 4) == 0);
assert(ret == 4);
/* read/write at end of EEPROM */
......@@ -234,7 +234,7 @@ static int cmd_test(int argc, char **argv)
assert(ret == 4);
memset(result, 0, 4);
ret = eeprom_read(EEPROM_SIZE - 4, (uint8_t *)result, 4);
assert(strncmp((const char *)result, expected, 4) == 0);
assert(strncmp(result, expected, 4) == 0);
assert(ret == 4);
/* read/write single byte */
......@@ -249,24 +249,24 @@ static int cmd_test(int argc, char **argv)
eeprom_clear(0, 4);
memset(result, 0, 4);
ret = eeprom_read(0, (uint8_t *)result, 4);
assert(strncmp((const char *)result, "", 4) == 0);
assert(strncmp(result, "", 4) == 0);
assert(ret == 4);
eeprom_clear(EEPROM_SIZE - 4, 4);
ret = eeprom_read(EEPROM_SIZE - 4, (uint8_t *)result, 4);
assert(strncmp((const char *)result, "", 4) == 0);
assert(strncmp(result, "", 4) == 0);
assert(ret == 4);
/* set some bytes */
eeprom_set(0, 'A', 4);
ret = eeprom_read(0, (uint8_t *)result, 4);
assert(strncmp((const char *)result, "AAAA", 4) == 0);
assert(strncmp(result, "AAAA", 4) == 0);
assert(ret == 4);
memset(result, 0, 4);
eeprom_set(EEPROM_SIZE - 4, 'A', 4);
ret = eeprom_read(EEPROM_SIZE - 4, (uint8_t *)result, 4);
assert(strncmp((const char *)result, "AAAA", 4) == 0);
assert(strncmp(result, "AAAA", 4) == 0);
assert(ret == 4);
puts("SUCCESS");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment