Lines Matching refs:TempPath2
457 SmallString<64> TempPath2; in TEST_F() local
459 fs::createTemporaryFile("prefix", "temp", FileDescriptor2, TempPath2)); in TEST_F()
462 ASSERT_NO_ERROR(fs::getUniqueID(Twine(TempPath2), D)); in TEST_F()
466 ASSERT_NO_ERROR(fs::remove(Twine(TempPath2))); in TEST_F()
470 ASSERT_NO_ERROR(fs::create_link(Twine(TempPath), Twine(TempPath2))); in TEST_F()
472 ASSERT_NO_ERROR(fs::getUniqueID(Twine(TempPath2), D2)); in TEST_F()
503 SmallString<64> TempPath2; in TEST_F() local
504 ASSERT_NO_ERROR(fs::createTemporaryFile("prefix", "temp", FD2, TempPath2)); in TEST_F()
505 ASSERT_TRUE(TempPath2.endswith(".temp")); in TEST_F()
506 ASSERT_NE(TempPath.str(), TempPath2.str()); in TEST_F()
510 ASSERT_NO_ERROR(fs::status(Twine(TempPath2), B)); in TEST_F()
516 ASSERT_NO_ERROR(fs::remove(Twine(TempPath2))); in TEST_F()
517 ASSERT_NO_ERROR(fs::remove(Twine(TempPath2))); in TEST_F()
518 ASSERT_EQ(fs::remove(Twine(TempPath2), false), in TEST_F()
521 std::error_code EC = fs::status(TempPath2.c_str(), B); in TEST_F()
526 ASSERT_EQ(fs::access(Twine(TempPath2), sys::fs::AccessMode::Exist), in TEST_F()
534 ASSERT_NO_ERROR(fs::create_link(Twine(TempPath), Twine(TempPath2))); in TEST_F()
536 ASSERT_NO_ERROR(fs::equivalent(Twine(TempPath), Twine(TempPath2), equal)); in TEST_F()
539 ASSERT_NO_ERROR(fs::status(Twine(TempPath2), B)); in TEST_F()
547 ASSERT_NO_ERROR(fs::remove(Twine(TempPath2))); in TEST_F()