Home
last modified time | relevance | path

Searched refs:tfile (Results 1 – 1 of 1) sorted by relevance

/bionic/tests/
Dstdio_test.cpp147 FILE* tfile = fdopen(tf.fd, "r"); in TEST() local
148 ASSERT_TRUE(tfile != nullptr); in TEST()
150 AssertFileIs(tfile, "hello\n"); in TEST()
151 fclose(tfile); in TEST()
901 FILE* tfile = fdopen(tf.fd, "r+"); in TEST() local
902 ASSERT_TRUE(tfile != nullptr); in TEST()
904 ASSERT_EQ(7, fprintf(tfile, "%d %s", 123, "abc")); in TEST()
905 AssertFileIs(tfile, "123 abc"); in TEST()
906 fclose(tfile); in TEST()