Skip to content

Commit 872db84

Browse files
committed
Increase r2r timeout from 15s to 30s
1 parent 227d8b6 commit 872db84

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

binr/r2r/r2r.c

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
1-
/* radare - LGPL - Copyright 2020-2021 - pancake, thestr4ng3r */
1+
/* radare - LGPL - Copyright 2020-2022 - pancake, thestr4ng3r */
22

33
#include "r2r.h"
44

55
#define WORKERS_DEFAULT 8
66
#define RADARE2_CMD_DEFAULT "radare2"
77
#define RASM2_CMD_DEFAULT "rasm2"
88
#define JSON_TEST_FILE_DEFAULT "bins/elf/crackme0x00b"
9-
#define TIMEOUT_DEFAULT 960
9+
// 30 seconds is the maximum time a test can run
10+
#define TIMEOUT_DEFAULT (30*60)
1011

1112
#define STRV(x) #x
1213
#define STR(x) STRV(x)

0 commit comments

Comments
 (0)