Lines Matching refs:TempPath2
699 SmallString<64> TempPath2; in TEST_F() local
701 fs::createTemporaryFile("prefix", "temp", FileDescriptor2, TempPath2)); in TEST_F()
704 ASSERT_NO_ERROR(fs::getUniqueID(Twine(TempPath2), D)); in TEST_F()
708 ASSERT_NO_ERROR(fs::remove(Twine(TempPath2))); in TEST_F()
712 ASSERT_NO_ERROR(fs::create_link(Twine(TempPath), Twine(TempPath2))); in TEST_F()
714 ASSERT_NO_ERROR(fs::getUniqueID(Twine(TempPath2), D2)); in TEST_F()
733 ASSERT_NO_ERROR(fs::remove(TempPath2)); in TEST_F()
857 SmallString<64> TempPath2; in TEST_F() local
858 ASSERT_NO_ERROR(fs::createTemporaryFile("prefix", "temp", FD2, TempPath2)); in TEST_F()
859 ASSERT_TRUE(TempPath2.endswith(".temp")); in TEST_F()
860 ASSERT_NE(TempPath.str(), TempPath2.str()); in TEST_F()
864 ASSERT_NO_ERROR(fs::status(Twine(TempPath2), B)); in TEST_F()
870 ASSERT_NO_ERROR(fs::remove(Twine(TempPath2))); in TEST_F()
871 ASSERT_NO_ERROR(fs::remove(Twine(TempPath2))); in TEST_F()
872 ASSERT_EQ(fs::remove(Twine(TempPath2), false), in TEST_F()
875 std::error_code EC = fs::status(TempPath2.c_str(), B); in TEST_F()
880 ASSERT_EQ(fs::access(Twine(TempPath2), sys::fs::AccessMode::Exist), in TEST_F()
889 ASSERT_NO_ERROR(fs::create_link(Twine(TempPath), Twine(TempPath2))); in TEST_F()
891 ASSERT_NO_ERROR(fs::equivalent(Twine(TempPath), Twine(TempPath2), equal)); in TEST_F()
894 ASSERT_NO_ERROR(fs::status(Twine(TempPath2), B)); in TEST_F()
902 ASSERT_NO_ERROR(fs::remove(Twine(TempPath2))); in TEST_F()