We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2d1f9e0 commit 96b7a77Copy full SHA for 96b7a77
1 file changed
benchexec/container.py
@@ -802,15 +802,17 @@ def setup_fuse_overlay_upperdir(upperdir):
802
if len(fields) < 5:
803
continue
804
device_id, mountpoint = fields[2], fields[4]
805
- device_id_to_mounts.setdefault(device_id, []).append(mountpoint)
+ device_id_to_mounts.setdefault(device_id, []).append(
806
+ _decode_path(mountpoint)
807
+ )
808
809
for device_id, mounts in device_id_to_mounts.items():
810
# Skip single mounts
811
if len(mounts) <= 1:
812
813
# Make `upperdir/target` directory
814
for target in mounts:
- if not os.path.isdir(_decode_path(target)):
815
+ if not os.path.isdir(target):
816
817
target_in_upperdir = upperdir + target
818
os.makedirs(target_in_upperdir, exist_ok=True)
0 commit comments