569b4df24d
The following caveats must be noted: * Podman sets the Toolbx container's soft limit for the maximum number of open file descriptors to the host's hard limit, which is often greater than the host's soft limit [1]. * The ulimit(1) options -P, -T, -b, and -k don't work on Fedora 38 because the corresponding resource arguments for getrlimit(2) are absent from the operating system. These are RLIMIT_NPTS, RLIMIT_PTHREAD, RLIMIT_SBSIZE and RLIMIT_KQUEUES respectively. [1] https://github.com/containers/podman/issues/17681 https://github.com/containers/toolbox/issues/213
9 lines
179 B
Meson
9 lines
179 B
Meson
test_system = files(
|
|
'201-ipc.bats',
|
|
'203-network.bats',
|
|
'210-ulimit.bats',
|
|
)
|
|
|
|
if shellcheck.found()
|
|
test('shellcheck test/system', shellcheck, args: [test_system])
|
|
endif
|