tests: remove masked /sys/dev/block check
The c/common defaults were changed to no longer mask this path[1]. As such we need to remove it from this test. [1] https://github.com/containers/common/pull/2278 Signed-off-by: Paul Holzinger <pholzing@redhat.com>
This commit is contained in:
parent
4887a4fb1b
commit
2119c8da3c
|
@ -971,7 +971,7 @@ _EOF
|
|||
|
||||
run_buildah from --quiet --pull=false $WITH_POLICY_JSON alpine
|
||||
cid=$output
|
||||
for mask in /proc/acpi /proc/kcore /proc/keys /proc/latency_stats /proc/sched_debug /proc/scsi /proc/timer_list /proc/timer_stats /sys/dev/block /sys/devices/virtual/powercap /sys/firmware /sys/fs/selinux; do
|
||||
for mask in /proc/acpi /proc/kcore /proc/keys /proc/latency_stats /proc/sched_debug /proc/scsi /proc/timer_list /proc/timer_stats /sys/devices/virtual/powercap /sys/firmware /sys/fs/selinux; do
|
||||
if test -d $mask; then
|
||||
run_buildah run $cid ls $mask
|
||||
expect_output "" "Directories should be empty"
|
||||
|
|
Loading…
Reference in New Issue