Searched refs:tfile (Results 1 – 1 of 1) sorted by relevance
147 FILE* tfile = fdopen(tf.fd, "r"); in TEST() local148 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() local902 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()