test/system: speed up podman parallel build should not race

It is not clear at all why the count of 30 was choosen, this seems a
lot and of course takes quite a while. The test takes over 16s in CI.
To speed it up reduce the count to 10. I think this should still be good
enough to ensure there are no races IMO.

Signed-off-by: Paul Holzinger <pholzing@redhat.com>
This commit is contained in:
Paul Holzinger
2024-06-03 15:30:06 +02:00
parent 8852614792
commit 7f3bb2d238

View File

@ -246,7 +246,7 @@ FROM $IMAGE
RUN echo hi
EOF
local count=30
local count=10
for i in $(seq --format '%02g' 1 $count); do
timeout --foreground -v --kill=10 60 \
$PODMAN build -t i$i $PODMAN_TMPDIR &> $PODMAN_TMPDIR/log.$i &