diff options
Diffstat (limited to 'contrib/python/podman/test/test_runner.sh')
-rwxr-xr-x | contrib/python/podman/test/test_runner.sh | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/contrib/python/podman/test/test_runner.sh b/contrib/python/podman/test/test_runner.sh index 4771709ff..17dd2a30c 100755 --- a/contrib/python/podman/test/test_runner.sh +++ b/contrib/python/podman/test/test_runner.sh @@ -117,14 +117,19 @@ if [[ -n $VERBOSE ]]; then fi PODMAN="podman $PODMAN_ARGS" -# Run podman in background without systemd for test purposes cat >/tmp/test_podman.output <<-EOT $($PODMAN --version) $PODMAN varlink --timeout=0 ${PODMAN_HOST} ========================================== EOT +# Run podman in background without systemd for test purposes set -x +# Until podman issue#... is fixed. +sysctl fs.inotify.max_user_watches=999999 +sysctl fs.inotify.max_user_instances=999999 +sysctl fs.inotify.max_queued_events=999999 + $PODMAN varlink --timeout=0 ${PODMAN_HOST} >>/tmp/test_podman.output 2>&1 & if [[ -z $1 ]]; then |