Searched refs:tfile (Results 1 – 1 of 1) sorted by relevance
148 FILE* tfile = fdopen(tf.fd, "r"); in TEST() local149 ASSERT_TRUE(tfile != nullptr); in TEST()151 AssertFileIs(tfile, "hello\n"); in TEST()152 fclose(tfile); in TEST()907 FILE* tfile = fdopen(tf.fd, "r+"); in TEST() local908 ASSERT_TRUE(tfile != nullptr); in TEST()910 ASSERT_EQ(7, fprintf(tfile, "%d %s", 123, "abc")); in TEST()911 AssertFileIs(tfile, "123 abc"); in TEST()912 fclose(tfile); in TEST()