Skip to content

Commit e37da2c

Browse files
authored
[lldb] Fixed the TestExitDuringExpression test in case of a remote target (#93119)
Sometimes this test failed on the assert `The thread exited` in case of a remote target. Increase the timeout to 1 second to avoid a racing condition.
1 parent 4d9e7b1 commit e37da2c

File tree

1 file changed

+1
-1
lines changed
  • lldb/test/API/functionalities/thread/exit_during_expression

1 file changed

+1
-1
lines changed

lldb/test/API/functionalities/thread/exit_during_expression/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#include <stdio.h>
44
#include <unistd.h>
55

6-
static unsigned int g_timeout = 100000;
6+
static unsigned int g_timeout = 1000000;
77

88
extern int usleep(unsigned int);
99

0 commit comments

Comments
 (0)