| 7 | |
| 8 | Y_UNIT_TEST_SUITE(TFileLockTest) { |
| 9 | Y_UNIT_TEST(TestFlock) { |
| 10 | TTempFileHandle tmp("./file"); |
| 11 | |
| 12 | UNIT_ASSERT_EQUAL(Flock(tmp.GetHandle(), LOCK_EX), 0); |
| 13 | UNIT_ASSERT_EQUAL(Flock(tmp.GetHandle(), LOCK_UN), 0); |
| 14 | } |
| 15 | |
| 16 | Y_UNIT_TEST(TestFileLocker) { |
| 17 | TTempFileHandle tmp("./file.locker"); |
nothing calls this directly
no test coverage detected