diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2010-08-02 22:05:23 +0000 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2010-08-02 22:05:23 +0000 |
commit | ed9465a7130cf1a0d18843c701105b5f7b17047f (patch) | |
tree | e4f9762976796603326ba110f48e92c45f01e340 /gas | |
parent | 3ff2ccb075b357a8bde0a22f850a9956c90b336d (diff) | |
download | fsf-binutils-gdb-ed9465a7130cf1a0d18843c701105b5f7b17047f.zip fsf-binutils-gdb-ed9465a7130cf1a0d18843c701105b5f7b17047f.tar.gz fsf-binutils-gdb-ed9465a7130cf1a0d18843c701105b5f7b17047f.tar.bz2 |
Run data-1 only for i*86, x86_64 and ia64.
2010-08-02 H.J. Lu <hongjiu.lu@intel.com>
* elf/elf.exp: Run data-1 only for i*86, x86_64 and ia64.
Diffstat (limited to 'gas')
-rw-r--r-- | gas/testsuite/ChangeLog | 4 | ||||
-rw-r--r-- | gas/testsuite/gas/elf/elf.exp | 7 |
2 files changed, 10 insertions, 1 deletions
diff --git a/gas/testsuite/ChangeLog b/gas/testsuite/ChangeLog index e3b76a3..b5d0666 100644 --- a/gas/testsuite/ChangeLog +++ b/gas/testsuite/ChangeLog @@ -1,5 +1,9 @@ 2010-08-02 H.J. Lu <hongjiu.lu@intel.com> + * elf/elf.exp: Run data-1 only for i*86, x86_64 and ia64. + +2010-08-02 H.J. Lu <hongjiu.lu@intel.com> + PR gas/11867 * gas/elf/data-1.d: New. * gas/elf/data-1.s: Likewise. diff --git a/gas/testsuite/gas/elf/elf.exp b/gas/testsuite/gas/elf/elf.exp index e06db46..0dcc000 100644 --- a/gas/testsuite/gas/elf/elf.exp +++ b/gas/testsuite/gas/elf/elf.exp @@ -127,7 +127,12 @@ if { ([istarget "*-*-*elf*"] run_dump_test equ-reloc } } - run_dump_test "data-1" + if {[istarget "i*86-*-*"] + || [istarget "x86_64-*-*"] + || [istarget "ia64-*-*"]} then { + # This is a little endian test. + run_dump_test "data-1" + } run_dump_test "pseudo" run_dump_test "section0" run_dump_test "section1" |