Skip to content
Open
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion Lib/test/support/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3164,7 +3164,7 @@ def in_systemd_nspawn_sync_suppressed() -> bool:
with open("/run/systemd/container", "rb") as fp:
if fp.read().rstrip() != b"systemd-nspawn":
return False
except FileNotFoundError:
except (FileNotFoundError, PermissionError):
return False

# If systemd-nspawn is used, O_SYNC flag will immediately
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Tests failing on FreeBSD due to unreadable /run fixes
Loading