From: qiyao Date: Thu, 20 Jan 2011 05:38:41 +0000 (+0000) Subject: 2011-01-19 Yao Qi X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=9a40f7a77dbee86473bd697328ba60fa65c31728;p=pf3gnuchains%2Fsourceware.git 2011-01-19 Yao Qi * lib/dwarf.exp (dwarf2_support): Change supported targets to a positve list. --- diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog index 9e4a15d455..e5799432c3 100644 --- a/gdb/testsuite/ChangeLog +++ b/gdb/testsuite/ChangeLog @@ -1,5 +1,10 @@ 2011-01-19 Yao Qi + * lib/dwarf.exp (dwarf2_support): Change supported targets to a + positve list. + +2011-01-19 Yao Qi + * gdb.asm/asm-source.exp: Replace ARM target triplet with a canonical form. Remove "xscale-*-*" diff --git a/gdb/testsuite/lib/dwarf.exp b/gdb/testsuite/lib/dwarf.exp index 87bc62d2ce..ca7051d56d 100644 --- a/gdb/testsuite/lib/dwarf.exp +++ b/gdb/testsuite/lib/dwarf.exp @@ -16,15 +16,15 @@ # Return true if the target supports DWARF-2 and uses gas. # For now pick a sampling of likely targets. proc dwarf2_support {} { - if {![istarget *-*-linux*] - && ![istarget *-*-gnu*] - && ![istarget *-*-elf*] - && ![istarget *-*-openbsd*] - && ![istarget arm*-*-eabi*] - && ![istarget arm*-*-symbianelf*] - && ![istarget powerpc-*-eabi*]} { - return 0 + if {[istarget *-*-linux*] + || [istarget *-*-gnu*] + || [istarget *-*-elf*] + || [istarget *-*-openbsd*] + || [istarget arm*-*-eabi*] + || [istarget arm*-*-symbianelf*] + || [istarget powerpc-*-eabi*]} { + return 1 } - return 1 + return 0 }