diff options
author | Jhon Honce <jhonce@redhat.com> | 2018-08-02 07:25:28 -0700 |
---|---|---|
committer | Atomic Bot <atomic-devel@projectatomic.io> | 2018-08-05 11:06:18 +0000 |
commit | 54eec54b2a80705b5c8a4e61abf360295d29c01f (patch) | |
tree | 67e7cac51412df36f2d0957a925b88a8d99e24fd /contrib/python/podman/test/test_runner.sh | |
parent | 47620961fe8eb9ec859b33bd0480a698e655af69 (diff) | |
download | podman-54eec54b2a80705b5c8a4e61abf360295d29c01f.tar.gz podman-54eec54b2a80705b5c8a4e61abf360295d29c01f.tar.bz2 podman-54eec54b2a80705b5c8a4e61abf360295d29c01f.zip |
Add missing dependencies to build system
Signed-off-by: Jhon Honce <jhonce@redhat.com>
Closes: #1199
Approved by: rhatdan
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 |