Message ID | 1401898871-2270-8-git-send-email-omair.javaid@linaro.org |
---|---|
State | New |
Headers | show |
On 4 June 2014 17:21, Omair Javaid <omair.javaid@linaro.org> wrote: > 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(-) Looks OK to me. > 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 >
On 05/06/2014 14:00, Will Newton wrote: > On 4 June 2014 17:21, Omair Javaid <omair.javaid@linaro.org> wrote: >> 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(-) > > Looks OK to me. > >> 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 >> > > > ping!
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 }