diff options
author | Thomas Schwinge <tschwinge@gnu.org> | 2010-10-28 09:10:08 +0000 |
---|---|---|
committer | Thomas Schwinge <tschwinge@gnu.org> | 2010-10-28 09:10:08 +0000 |
commit | 4287f8de9769cdab8470a35e3fadce3be05753b3 (patch) | |
tree | 6fa41e42328c52347fb4dd0fa3e782e2d5edfac3 /gas | |
parent | 24b01a7495f590723b50c933cc409cebf2408b4d (diff) | |
download | gdb-4287f8de9769cdab8470a35e3fadce3be05753b3.zip gdb-4287f8de9769cdab8470a35e3fadce3be05753b3.tar.gz gdb-4287f8de9769cdab8470a35e3fadce3be05753b3.tar.bz2 |
ld/testsuite/
* ld-scripts/script.exp: Sort all filename globs.
gas/testsuite/
* gas/iq2000/load-hazards.exp: Sort all filename globs.
* gas/iq2000/yield.exp: Likewise.
* gas/mt/errors.exp: Likewise.
Diffstat (limited to 'gas')
-rw-r--r-- | gas/testsuite/ChangeLog | 6 | ||||
-rw-r--r-- | gas/testsuite/gas/iq2000/load-hazards.exp | 2 | ||||
-rw-r--r-- | gas/testsuite/gas/iq2000/yield.exp | 2 | ||||
-rw-r--r-- | gas/testsuite/gas/mt/errors.exp | 2 |
4 files changed, 9 insertions, 3 deletions
diff --git a/gas/testsuite/ChangeLog b/gas/testsuite/ChangeLog index 4517d52..9e12d93 100644 --- a/gas/testsuite/ChangeLog +++ b/gas/testsuite/ChangeLog @@ -1,3 +1,9 @@ +2010-10-28 Thomas Schwinge <thomas@schwinge.name> + + * gas/iq2000/load-hazards.exp: Sort all filename globs. + * gas/iq2000/yield.exp: Likewise. + * gas/mt/errors.exp: Likewise. + 2010-10-28 Alan Modra <amodra@gmail.com> * gas/elf/elf.exp (groupautob): Don't run on xtensa. diff --git a/gas/testsuite/gas/iq2000/load-hazards.exp b/gas/testsuite/gas/iq2000/load-hazards.exp index 654c96a..1e8657e 100644 --- a/gas/testsuite/gas/iq2000/load-hazards.exp +++ b/gas/testsuite/gas/iq2000/load-hazards.exp @@ -29,7 +29,7 @@ proc iq2000_warning_test { file testname {warnpattern ""} } { } if [istarget iq2000*-*-*] { - foreach file [glob -nocomplain -- $srcdir/$subdir/hazard*.s] { + foreach file [lsort [glob -nocomplain -- $srcdir/$subdir/hazard*.s]] { set file [file tail $file] switch -- $file { "hazard0.s" { diff --git a/gas/testsuite/gas/iq2000/yield.exp b/gas/testsuite/gas/iq2000/yield.exp index c68095f..30fae38 100644 --- a/gas/testsuite/gas/iq2000/yield.exp +++ b/gas/testsuite/gas/iq2000/yield.exp @@ -28,7 +28,7 @@ proc iq2000_error_test { file testname {pattern ""} } { } if [istarget iq2000*-*-*] { - foreach file [glob -nocomplain -- $srcdir/$subdir/yield*.s] { + foreach file [lsort [glob -nocomplain -- $srcdir/$subdir/yield*.s]] { set file [file tail $file] iq2000_error_test $file \ "assembler emits yield instruction in delay slot error for $file" \ diff --git a/gas/testsuite/gas/mt/errors.exp b/gas/testsuite/gas/mt/errors.exp index 30d217f..7b94bdb 100644 --- a/gas/testsuite/gas/mt/errors.exp +++ b/gas/testsuite/gas/mt/errors.exp @@ -28,7 +28,7 @@ proc mrisc1_error_test { file testname {warnpattern ""} } { } if [istarget mt-*-*] { - foreach file [glob -nocomplain -- $srcdir/$subdir/bad*.s] { + foreach file [lsort [glob -nocomplain -- $srcdir/$subdir/bad*.s]] { set file [file tail $file] switch -- $file { "badreg.s" { |