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.
1 parent 46a1f01 commit b289082Copy full SHA for b289082
features/storage/TESTS/filesystem/general_filesystem/main.cpp
@@ -1899,6 +1899,7 @@ static void FS_append_non_empty_file()
1899
res = !((fd[0] = fopen("/default/" "filename", "a+")) != NULL);
1900
TEST_ASSERT_EQUAL(0, res);
1901
#if defined(__MICROLIB)
1902
+ // Microlib does not support opening a file in an append mode.
1903
fseek(fd[0], 0L, SEEK_END);
1904
#endif
1905
write_sz = fwrite(rewrite_buf, sizeof(char), sizeof(rewrite_buf), fd[0]);
0 commit comments