Skip to content

Commit

Permalink
fixup! tests/pkg_fatfs_vfs: add test of fopen etc. with newlib
Browse files Browse the repository at this point in the history
  • Loading branch information
sven-hm committed May 29, 2020
1 parent 239f4d4 commit cd00c03
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/pkg_fatfs_vfs/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -321,7 +321,7 @@ static void test_newlib(void)
print_test_result("test_newlib__fclose_w", fclose(fl) == 0);

/* open file RO */
fl = fopen(FULL_FNAME1, "r");
fl = fopen(FULL_FNAME2, "r");
print_test_result("test_newlib__fopen_r", fl != NULL);
print_test_result("test_newlib__fclose_r", fclose(fl) == 0);

Expand Down

0 comments on commit cd00c03

Please # to comment.