Skip to content

Commit 01727ad

Browse files
committed
fix: reduce monitor timeout for improved test execution speed
1 parent a93e03c commit 01727ad

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

scripts/run_renode_tests.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ VERIFY_SCRIPT="$SOURCE_DIR/scripts/verify_renode_logs.sh"
2525

2626
# Timeouts (seconds)
2727
CONNECT_TIMEOUT=90
28-
MONITOR_TIMEOUT=60
28+
MONITOR_TIMEOUT=30
2929

3030
echo "=============================================="
3131
echo " dmod-boot Renode emulation tests"
@@ -66,7 +66,7 @@ echo ""
6666
# -------------------------------------------------------
6767
echo "[3/4] Starting Renode emulation..."
6868
CONNECT_LOG="$BUILD_DIR/connect.log"
69-
timeout "$CONNECT_TIMEOUT" cmake --build "$BUILD_DIR" --target connect > "$CONNECT_LOG" 2>&1 &
69+
cmake --build "$BUILD_DIR" --target connect > "$CONNECT_LOG" 2>&1 &
7070
CONNECT_PID=$!
7171

7272
echo "Waiting for Renode GDB server to start (PID $CONNECT_PID)..."

0 commit comments

Comments
 (0)