This is the mail archive of the gdb-patches@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[PATCH 7/7] Enables gdb.reverse testsuite for aarch64*-linux targets


This patch enables gdb.reverse testsuite for aarch64*-linux targets.

gdb/testsuite:

2014-06-04  Omair Javaid  <omair.javaid@linaro.org>

	* lib/gdb.exp (supports_process_record): Return true for aarch64*-linux*.
	(supports_reverse): Likewise.

---
 gdb/testsuite/lib/gdb.exp | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/gdb/testsuite/lib/gdb.exp b/gdb/testsuite/lib/gdb.exp
index 30463a9..7f51fb0 100644
--- a/gdb/testsuite/lib/gdb.exp
+++ b/gdb/testsuite/lib/gdb.exp
@@ -1834,8 +1834,8 @@ proc supports_process_record {} {
 	return [target_info gdb,use_precord]
     }
 
-    if { [istarget "arm*-*-linux*"] || [istarget "x86_64-*-linux*"]
-         || [istarget "i\[34567\]86-*-linux*"] } {
+    if { [istarget "aarch64*-*-linux*"] || [istarget "arm*-*-linux*"] ||
+         [istarget "x86_64-*-linux*"] || [istarget "i\[34567\]86-*-linux*"] } {
 	return 1
     }
 
@@ -1850,8 +1850,8 @@ proc supports_reverse {} {
 	return [target_info gdb,can_reverse]
     }
 
-    if { [istarget "arm*-*-linux*"] || [istarget "x86_64-*-linux*"]
-         || [istarget "i\[34567\]86-*-linux*"] } {
+    if { [istarget "aarch64*-*-linux*"] || [istarget "arm*-*-linux*"] ||
+         [istarget "x86_64-*-linux*"] || [istarget "i\[34567\]86-*-linux*"] } {
 	return 1
     }
 
-- 
1.9.1


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]