Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 1 addition & 5 deletions Lib/test/test_posix.py
Original file line number Diff line number Diff line change
Expand Up @@ -481,9 +481,6 @@ def test_utime_with_fd(self):
finally:
os.close(fd)

# NSKIP034 https://github.com/nanvix/cpython/issues/514
@unittest.skipIf(support.is_nanvix_standalone,
"NSKIP034: os.utime(times) does not modify mtime/atime on FAT VFS")
@unittest.skipUnless(os.utime in os.supports_follow_symlinks, "test needs follow_symlinks support in os.utime")
def test_utime_nofollow_symlinks(self):
now = time.time()
Expand Down Expand Up @@ -1550,8 +1547,7 @@ def test_stat_dir_fd(self):
posix.stat, name, dir_fd=10**20)

# NSKIP034 https://github.com/nanvix/cpython/issues/514
@unittest.skipIf(support.is_nanvix_standalone,
"NSKIP034: os.utime(times) does not modify mtime/atime on FAT VFS")
@unittest.skip("NSKIP034: test may generate a timestamp outside the FAT range")
@unittest.skipUnless(os.utime in os.supports_dir_fd, "test needs dir_fd support in os.utime()")
Comment on lines 1549 to 1551
def test_utime_dir_fd(self):
with self.prepare_file() as (dir_fd, name, fullname):
Expand Down