Skip to content

Commit 966a9c3

Browse files
committed
tests: posix: unistd_h: mark fsync() & ftruncate() as supported
These functions have been supported, update the test accordingly. Signed-off-by: Yong Cong Sin <[email protected]>
1 parent 8f69ecd commit 966a9c3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/posix/headers/src/unistd_h.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -234,8 +234,8 @@ ZTEST(posix_headers, test_unistd_h)
234234
/* zassert_not_null(fexecve); */ /* not implemented */
235235
/* zassert_not_null(fork); */ /* not implemented */
236236
/* zassert_not_null(fpathconf); */ /* not implemented */
237-
/* zassert_not_null(fsync); */ /* not implemented */
238-
/* zassert_not_null(ftruncate); */ /* not implemented */
237+
zassert_not_null(fsync);
238+
zassert_not_null(ftruncate);
239239
/* zassert_not_null(getcwd); */ /* not implemented */
240240
/* zassert_not_null(getegid); */ /* not implemented */
241241
/* zassert_not_null(geteuid); */ /* not implemented */

0 commit comments

Comments
 (0)