Skip to content

Commit 41e1b11

Browse files
committed
fix: update timeout values in run_renode_tests.sh and change log level to warning in main.c
1 parent e767ef4 commit 41e1b11

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

scripts/run_renode_tests.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ EXPECTED_LOGS="$SOURCE_DIR/configs/renode/expected_logs.txt"
2424
VERIFY_SCRIPT="$SOURCE_DIR/scripts/verify_renode_logs.sh"
2525

2626
# Timeouts (seconds)
27-
CONNECT_TIMEOUT=90
28-
MONITOR_TIMEOUT=30
27+
CONNECT_TIMEOUT=120
28+
MONITOR_TIMEOUT=90
2929

3030
echo "=============================================="
3131
echo " dmod-boot Renode emulation tests"

src/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -428,7 +428,7 @@ static void boot_shell(dmlog_ctx_t ctx)
428428

429429
int main(int argc, char** argv)
430430
{
431-
Dmod_SetLogLevel(Dmod_LogLevel_Info);
431+
Dmod_SetLogLevel(Dmod_LogLevel_Warn);
432432
void* logs_start = &__logs_start__;
433433
void* logs_end = &__logs_end__;
434434
dmlog_index_t logs_size = (dmlog_index_t)((uintptr_t)logs_end - (uintptr_t)logs_start);

0 commit comments

Comments
 (0)