Remove timeout from listener readiness check in runtest.sh

This commit is contained in:
Yaro Kasear 2025-05-02 15:14:18 -05:00
parent 0b351ee7ca
commit abdf5bcb61

View file

@ -179,7 +179,7 @@ for ((COUNTER = 1; COUNTER <= NUM_TESTS; COUNTER++)); do
LISTENER_PID=$!
# Wait for the READY_FILE to contain "LISTENING_STARTED"
timeout 5 bash -c "until grep -q LISTENING_STARTED $READY_FILE; do sleep 0.2; done"
bash -c "until grep -q LISTENING_STARTED $READY_FILE; do sleep 0.2; done"
fi
log " Sample $i of $NUM_SAMPLES"