diff options
author | Wei-cheng Wang <cole945@gmail.com> | 2015-01-17 14:30:33 +0800 |
---|---|---|
committer | Cole Wang <cole945@gmail.com> | 2015-01-17 19:48:22 +0800 |
commit | b4cdae6fe51e532e0b1069c6960b14a610182d14 (patch) | |
tree | ecda676bcc94e5cd03ac293b602d1dd99b82f2bc /gdb/testsuite | |
parent | 2608dbf8a3ee666ac0a7d5d7c45611d489edcda5 (diff) | |
download | gdb-b4cdae6fe51e532e0b1069c6960b14a610182d14.zip gdb-b4cdae6fe51e532e0b1069c6960b14a610182d14.tar.gz gdb-b4cdae6fe51e532e0b1069c6960b14a610182d14.tar.bz2 |
Reverse debugging for PowerPC.
Diffstat (limited to 'gdb/testsuite')
-rw-r--r-- | gdb/testsuite/ChangeLog | 6 | ||||
-rw-r--r-- | gdb/testsuite/lib/gdb.exp | 6 |
2 files changed, 10 insertions, 2 deletions
diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog index 0558960..9dd10f0 100644 --- a/gdb/testsuite/ChangeLog +++ b/gdb/testsuite/ChangeLog @@ -1,3 +1,9 @@ +2015-01-17 Wei-cheng Wang <cole945@gmail.com> + + * lib/gdb.exp (supports_process_record): Return true for + powerpc*-*-linux*. + (supports_reverse): Likewise. + 2015-01-15 Don Breazeal <donb@codesourcery.com> * gdb.base/attach-pie-noexec.exp: Use can_spawn_for_attach diff --git a/gdb/testsuite/lib/gdb.exp b/gdb/testsuite/lib/gdb.exp index fc6bc83..d3a3350 100644 --- a/gdb/testsuite/lib/gdb.exp +++ b/gdb/testsuite/lib/gdb.exp @@ -1890,7 +1890,8 @@ proc supports_process_record {} { } if { [istarget "arm*-*-linux*"] || [istarget "x86_64-*-linux*"] - || [istarget "i\[34567\]86-*-linux*"] } { + || [istarget "i\[34567\]86-*-linux*"] + || [istarget "powerpc*-*-linux*"] } { return 1 } @@ -1906,7 +1907,8 @@ proc supports_reverse {} { } if { [istarget "arm*-*-linux*"] || [istarget "x86_64-*-linux*"] - || [istarget "i\[34567\]86-*-linux*"] } { + || [istarget "i\[34567\]86-*-linux*"] + || [istarget "powerpc*-*-linux*"] } { return 1 } |