test slowdown
This commit is contained in:
parent
b6b9ffccac
commit
4807d3f329
@ -33,7 +33,7 @@ pthread_t threads[NTHREADS];
|
||||
|
||||
pthread_barrier_t barrier;
|
||||
|
||||
#define NFORKS 10
|
||||
#define NFORKS 1000
|
||||
|
||||
/* Used to create a conditional breakpoint that always fails. */
|
||||
volatile int zero;
|
||||
@ -108,7 +108,7 @@ main (void)
|
||||
pthread_t bp_thread;
|
||||
|
||||
/* Don't run forever. */
|
||||
alarm (180);
|
||||
// alarm (180);
|
||||
|
||||
pthread_barrier_init (&barrier, NULL, NTHREADS + 1);
|
||||
|
||||
|
@ -39,6 +39,7 @@ proc do_test { cond_bp_target detach_on_fork } {
|
||||
|
||||
set saved_gdbflags $GDBFLAGS
|
||||
set GDBFLAGS [concat $GDBFLAGS " -ex \"set non-stop on\""]
|
||||
set GDBFLAGS [concat $GDBFLAGS " -ex \"set sysroot /\""]
|
||||
clean_restart $binfile
|
||||
set GDBFLAGS $saved_gdbflags
|
||||
|
||||
@ -71,6 +72,7 @@ proc do_test { cond_bp_target detach_on_fork } {
|
||||
}
|
||||
-re "Inferior $decimal \(\[^\r\n\]+\) exited normally" {
|
||||
incr fork_count
|
||||
exp_continue
|
||||
if {$fork_count <= 100} {
|
||||
exp_continue
|
||||
} else {
|
||||
@ -105,7 +107,7 @@ proc foreach_with_prefix {var list body} {
|
||||
}
|
||||
|
||||
foreach_with_prefix cond_bp_target {1 0} {
|
||||
foreach_with_prefix detach_on_fork {"on" "off"} {
|
||||
foreach_with_prefix detach_on_fork {"off" "off"} {
|
||||
do_test $cond_bp_target $detach_on_fork
|
||||
|
||||
# Disable "off" for now. The test does pass with
|
||||
|
Loading…
Reference in New Issue
Block a user