diff options
author | Andrew MacLeod <amacleod@redhat.com> | 2012-02-24 21:16:26 +0000 |
---|---|---|
committer | Andrew Macleod <amacleod@gcc.gnu.org> | 2012-02-24 21:16:26 +0000 |
commit | 9fced7562f07a2ff569dbb472f5f600d56fd0859 (patch) | |
tree | a0b3d285254aa38e8077dc9baf77a4aca28fda76 /gcc/testsuite/gcc.dg/simulate-thread/simulate-thread.gdb | |
parent | 15498cfa4ee495c125aaf847a77bf1001505178b (diff) | |
download | gcc-9fced7562f07a2ff569dbb472f5f600d56fd0859.zip gcc-9fced7562f07a2ff569dbb472f5f600d56fd0859.tar.gz gcc-9fced7562f07a2ff569dbb472f5f600d56fd0859.tar.bz2 |
simulate-thread.gdb: Use return value from simulate_thread_wrapper_other_threads
* gcc.dg/simulate-thread/simulate-thread.gdb: Use return value from
simulate_thread_wrapper_other_threads
* gcc.dg/simulate-thread/atomic-load-int128.c (simulate_thread_main):
Move initialization of 'value' to main().
(main): Initialize 'value';
* gcc.dg/simulate-thread/speculative-store.c
(simulate_thread_step_verify): Return 0 when successful.
* gcc.dg/simulate-thread/simulate-thread.h (HOSTILE_THREAD_THRESHOLD):
Reduce threshold.
(INSN_COUNT_THRESHOLD): New. Instruction limit to terminate test.
(simulate_thread_wrapper_other_threads): Return a success/fail value
and issue an error if the instruction count threshold is exceeded.
From-SVN: r184564
Diffstat (limited to 'gcc/testsuite/gcc.dg/simulate-thread/simulate-thread.gdb')
-rw-r--r-- | gcc/testsuite/gcc.dg/simulate-thread/simulate-thread.gdb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/testsuite/gcc.dg/simulate-thread/simulate-thread.gdb b/gcc/testsuite/gcc.dg/simulate-thread/simulate-thread.gdb index cbb65db..93f60c3 100644 --- a/gcc/testsuite/gcc.dg/simulate-thread/simulate-thread.gdb +++ b/gcc/testsuite/gcc.dg/simulate-thread/simulate-thread.gdb @@ -5,7 +5,7 @@ run set $ret = 0 while (simulate_thread_fini != 1) && (! $ret) - call simulate_thread_wrapper_other_threads() + set $ret |= simulate_thread_wrapper_other_threads() stepi set $ret |= simulate_thread_step_verify() end |