Skip to content

Commit

Permalink
Docker executor doesn't support OverlayedReadOnly right now
Browse files Browse the repository at this point in the history
  • Loading branch information
staticfloat committed Jan 29, 2025
1 parent 176f64b commit 9ac3231
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/Sandbox.jl
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,8 @@ for executor in all_executors
);
)
with_executor(executor) do exe
@test success(exe, config, `/bin/sh -c "[ -d /read_only ]"`)
# We don't support OverlayedReadOnly mounts on Docker right now
@test success(exe, config, `/bin/sh -c "[ -d /read_only ]"`) broken=(executor == DockerExecutor)
@test !success(exe, config, `/bin/sh -c "echo aperture > /read_only/error.txt 2>&1"`)
end
end
Expand Down

0 comments on commit 9ac3231

Please sign in to comment.