gdb/testsuite/

* gdb.dwarf2/dw2-restrict.exp: Skip compilation on non-x86_64 targets.
This commit is contained in:
Jan Kratochvil 2013-01-15 15:11:09 +00:00
parent cb566e3aa8
commit 22fc223eb8
2 changed files with 9 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2013-01-15 Jan Kratochvil <jan.kratochvil@redhat.com>
* gdb.dwarf2/dw2-restrict.exp: Skip compilation on non-x86_64 targets.
2013-01-14 Tom Tromey <tromey@redhat.com>
* gdb.base/completion.exp: Add "set gnutarget" test.

View File

@ -20,6 +20,11 @@ if {![dwarf2_support]} {
return 0
}
# This test can only be run on x86-64 targets.
if {![istarget x86_64-*] || ![is_lp64_target]} {
return 0
}
standard_testfile .S
if {[prepare_for_testing $testfile.exp $testfile $srcfile {nodebug}]} {