diff options
author | Alan Modra <amodra@gmail.com> | 2012-05-08 12:15:06 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2012-05-08 12:15:06 +0000 |
commit | 4aee77982db9a121f2383ad4347766e01748bc98 (patch) | |
tree | 8428e1afcac3acaeb070d5a5b647b03ccc0218e2 /gas/testsuite/lib | |
parent | e5b62927f497d9afa39fc165da3f63bd44fb8474 (diff) | |
download | gdb-4aee77982db9a121f2383ad4347766e01748bc98.zip gdb-4aee77982db9a121f2383ad4347766e01748bc98.tar.gz gdb-4aee77982db9a121f2383ad4347766e01748bc98.tar.bz2 |
* lib/gas-defs.exp (run_dump_test): Don't set LC_ALL here.
Diffstat (limited to 'gas/testsuite/lib')
-rw-r--r-- | gas/testsuite/lib/gas-defs.exp | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/gas/testsuite/lib/gas-defs.exp b/gas/testsuite/lib/gas-defs.exp index 9d89a2e..234789a 100644 --- a/gas/testsuite/lib/gas-defs.exp +++ b/gas/testsuite/lib/gas-defs.exp @@ -738,19 +738,9 @@ proc run_dump_test { name {extra_options {}} } { set redir "" } - # Ensure consistent sorting of symbols - if {[info exists env(LC_ALL)]} { - set old_lc_all $env(LC_ALL) - } - set env(LC_ALL) "C" send_log "$cmd\n" set status [gas_host_run "$cmd" "$redir"] set comp_output [prune_warnings [lindex $status 1]] - if {[info exists old_lc_all]} { - set env(LC_ALL) $old_lc_all - } else { - unset env(LC_ALL) - } set comp_output [prune_warnings $comp_output] if ![string match "" $comp_output] then { send_log "$comp_output\n" |