Lines Matching refs:tfs
65 fs::ifstream tfs(p); in test() local
66 BOOST_TEST(tfs.is_open()); in test()
70 fs::ifstream tfs(p / p.filename()); // should fail in test() local
71 BOOST_TEST(!tfs.is_open()); in test()
75 fs::ifstream tfs(p, std::ios_base::in); in test() local
76 BOOST_TEST(tfs.is_open()); in test()
80 fs::ifstream tfs; in test() local
81 tfs.open(p); in test()
82 BOOST_TEST(tfs.is_open()); in test()
86 fs::ifstream tfs; in test() local
87 tfs.open(p, std::ios_base::in); in test()
88 BOOST_TEST(tfs.is_open()); in test()
92 fs::ofstream tfs(p); in test() local
93 BOOST_TEST(tfs.is_open()); in test()
97 fs::ofstream tfs(p, std::ios_base::out); in test() local
98 BOOST_TEST(tfs.is_open()); in test()
102 fs::ofstream tfs; in test() local
103 tfs.open(p); in test()
104 BOOST_TEST(tfs.is_open()); in test()
108 fs::ofstream tfs; in test() local
109 tfs.open(p, std::ios_base::out); in test()
110 BOOST_TEST(tfs.is_open()); in test()
114 fs::fstream tfs(p); in test() local
115 BOOST_TEST(tfs.is_open()); in test()
119 fs::fstream tfs(p, std::ios_base::in|std::ios_base::out); in test() local
120 BOOST_TEST(tfs.is_open()); in test()
124 fs::fstream tfs; in test() local
125 tfs.open(p); in test()
126 BOOST_TEST(tfs.is_open()); in test()
130 fs::fstream tfs; in test() local
131 tfs.open(p, std::ios_base::in|std::ios_base::out); in test()
132 BOOST_TEST(tfs.is_open()); in test()