* lib/ld-lib.exp (run_dump_test): Don't apply prune_warnings
authorHans-Peter Nilsson <hp@axis.com>
Mon, 18 Feb 2008 11:04:09 +0000 (11:04 +0000)
committerHans-Peter Nilsson <hp@axis.com>
Mon, 18 Feb 2008 11:04:09 +0000 (11:04 +0000)
for tool invocations where warnings or errors can be matched.

ld/testsuite/ChangeLog
ld/testsuite/lib/ld-lib.exp

index 673f240ca65b1240d3ae4426c8151f77f849ef35..972e53ae3701dcc0a97be853cf75cac1ec2f5361 100644 (file)
@@ -1,3 +1,8 @@
+2008-02-18  Hans-Peter Nilsson  <hp@axis.com>
+
+       * lib/ld-lib.exp (run_dump_test): Don't apply prune_warnings
+       for tool invocations where warnings or errors can be matched.
+
 2008-02-14  H.J. Lu  <hongjiu.lu@intel.com>
 
        * ld-shared/sh1.c (shlib_overriddencall2): Moved to ...
index 4e8903c1409eeca3e4cdda5e0e36aa36e82b5a3b..1ebb1a22685f6e8424d5bafa32e35f9ccc5d7b1f 100644 (file)
@@ -846,7 +846,7 @@ proc run_dump_test { name } {
        send_log "$cmd\n"
        set cmdret [remote_exec host [concat sh -c [list "$cmd 2>&1"]] "" "/dev/null" "ld.tmp"]
        remote_upload host "ld.tmp"
-       set comp_output [prune_warnings [file_contents "ld.tmp"]]
+       set comp_output [file_contents "ld.tmp"]
        remote_file host delete "ld.tmp"
        remote_file build delete "ld.tmp"
        set cmdret [lindex $cmdret 0]
@@ -863,7 +863,7 @@ proc run_dump_test { name } {
            send_log "$cmd\n"
            set cmdret [remote_exec host [concat sh -c [list "$cmd 2>&1"]] "" "/dev/null" "ld.tmp"]
            remote_upload host "ld.tmp"
-           append comp_output [prune_warnings [file_contents "ld.tmp"]]
+           append comp_output [file_contents "ld.tmp"]
            remote_file host delete "ld.tmp"
            remote_file build delete "ld.tmp"
            set cmdret [lindex $cmdret 0]
This page took 0.028748 seconds and 4 git commands to generate.