test slowdown

This commit is contained in:
Pedro Alves
2015-08-06 12:33:19 +01:00
parent b6b9ffccac
commit 4807d3f329
2 changed files with 5 additions and 3 deletions

View File

@ -33,7 +33,7 @@ pthread_t threads[NTHREADS];
pthread_barrier_t barrier; pthread_barrier_t barrier;
#define NFORKS 10 #define NFORKS 1000
/* Used to create a conditional breakpoint that always fails. */ /* Used to create a conditional breakpoint that always fails. */
volatile int zero; volatile int zero;
@ -108,7 +108,7 @@ main (void)
pthread_t bp_thread; pthread_t bp_thread;
/* Don't run forever. */ /* Don't run forever. */
alarm (180); // alarm (180);
pthread_barrier_init (&barrier, NULL, NTHREADS + 1); pthread_barrier_init (&barrier, NULL, NTHREADS + 1);

View File

@ -39,6 +39,7 @@ proc do_test { cond_bp_target detach_on_fork } {
set saved_gdbflags $GDBFLAGS set saved_gdbflags $GDBFLAGS
set GDBFLAGS [concat $GDBFLAGS " -ex \"set non-stop on\""] set GDBFLAGS [concat $GDBFLAGS " -ex \"set non-stop on\""]
set GDBFLAGS [concat $GDBFLAGS " -ex \"set sysroot /\""]
clean_restart $binfile clean_restart $binfile
set GDBFLAGS $saved_gdbflags set GDBFLAGS $saved_gdbflags
@ -71,6 +72,7 @@ proc do_test { cond_bp_target detach_on_fork } {
} }
-re "Inferior $decimal \(\[^\r\n\]+\) exited normally" { -re "Inferior $decimal \(\[^\r\n\]+\) exited normally" {
incr fork_count incr fork_count
exp_continue
if {$fork_count <= 100} { if {$fork_count <= 100} {
exp_continue exp_continue
} else { } else {
@ -105,7 +107,7 @@ proc foreach_with_prefix {var list body} {
} }
foreach_with_prefix cond_bp_target {1 0} { 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 do_test $cond_bp_target $detach_on_fork
# Disable "off" for now. The test does pass with # Disable "off" for now. The test does pass with