Skip to content

Commit 9f8a763

Browse files
committed
GitHub CI pipeline: transport_test (scripted) script needs to wait longer before launching client, as some of the slower build types (as with TSAN enabled) sometimes result in executing it before the server has read the input-script fully; so the test does not execute (fails). Increase all similar wait times a bit. / Pulling in submodules (i_t_s -> main merge).
1 parent b1d3f90 commit 9f8a763

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/main.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -904,7 +904,7 @@ jobs:
904904
$BUILT_CMD_PREFIX \
905905
./ipc_session_link_test_srv.exec $OUT_DIR/srv.log > $OUT_DIR/srv.console.log 2>&1 &
906906
SRV_PID=$!
907-
sleep 1
907+
sleep 5
908908
$BUILT_CMD_PREFIX \
909909
./ipc_session_link_test_cli.exec $OUT_DIR/cli.log > $OUT_DIR/cli.console.log 2>&1
910910
if wait $SRV_PID; then SRV_EC=0; else SRV_EC=$?; fi
@@ -928,7 +928,7 @@ jobs:
928928
$BUILT_CMD_PREFIX \
929929
./ipc_shm_link_test_srv.exec $OUT_DIR/srv.log > $OUT_DIR/srv.console.log 2>&1 &
930930
SRV_PID=$!
931-
sleep 1
931+
sleep 5
932932
$BUILT_CMD_PREFIX \
933933
./ipc_shm_link_test_cli.exec $OUT_DIR/cli.log > $OUT_DIR/cli.console.log 2>&1
934934
if wait $SRV_PID; then SRV_EC=0; else SRV_EC=$?; fi
@@ -954,7 +954,7 @@ jobs:
954954
$BUILT_CMD_PREFIX \
955955
./ipc_shm_arena_lend_link_test_srv.exec $OUT_DIR/srv.log > $OUT_DIR/srv.console.log 2>&1 &
956956
SRV_PID=$!
957-
sleep 1
957+
sleep 5
958958
$BUILT_CMD_PREFIX \
959959
./ipc_shm_arena_lend_link_test_cli.exec $OUT_DIR/cli.log > $OUT_DIR/cli.console.log 2>&1
960960
if wait $SRV_PID; then SRV_EC=0; else SRV_EC=$?; fi
@@ -1107,7 +1107,7 @@ jobs:
11071107
./transport_test.exec scripted $OUT_DIR/srv.log info $1 \
11081108
< srv-script.txt > $OUT_DIR/srv.console.log 2>&1 &
11091109
SRV_PID=$!
1110-
sleep 1
1110+
sleep 5
11111111
$BUILT_CMD_PREFIX \
11121112
./transport_test.exec scripted $OUT_DIR/cli.log info $1 \
11131113
< cli-script.txt > $OUT_DIR/cli.console.log 2>&1 &

flow

ipc_transport_structured

0 commit comments

Comments
 (0)