diff options
author | Klaus Aehlig <klaus.aehlig@huawei.com> | 2024-01-11 15:49:01 +0100 |
---|---|---|
committer | Klaus Aehlig <klaus.aehlig@huawei.com> | 2024-01-12 10:16:04 +0100 |
commit | 1b0c2268e96a800d02ce7851bc750f22d2a66427 (patch) | |
tree | 58f24dbfd51862aee4ec2c063c5e73e77b7ab5f7 /test/end-to-end/remote-execution | |
parent | e15f11ce0a7813602d9627e95ae9fb125afa891e (diff) | |
download | justbuild-1b0c2268e96a800d02ce7851bc750f22d2a66427.tar.gz |
end-to-end tests: wait longer for test services
Certain end-to-end tests require custom services. While normally
they come up in quickly (less than 2 seconds), on heavily overloaded
machines it might take longer. So increase the amount of time
these tests are willing to wait for the binary to start up to avoid
flakyness in our CI runs.
Diffstat (limited to 'test/end-to-end/remote-execution')
-rwxr-xr-x | test/end-to-end/remote-execution/dispatch.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/end-to-end/remote-execution/dispatch.sh b/test/end-to-end/remote-execution/dispatch.sh index 49b3257d..177c9259 100755 --- a/test/end-to-end/remote-execution/dispatch.sh +++ b/test/end-to-end/remote-execution/dispatch.sh @@ -57,7 +57,7 @@ ${JUST} execute --info-file "$INFOFILE" --pid-file "$PIDFILE" \ --log-limit 6 --local-build-root ${ESDIR} ${LOCAL_ARGS} \ -L "${LOCAL_LAUNCHER}" 2>&1 & -for _ in `seq 1 10` +for _ in `seq 1 60` do if test -f "${INFOFILE}" then |