* lib/target.exp (default_target_compile): Do not pass -log to
authorBen Elliston <bje@gnu.org>
Tue, 16 Feb 2016 17:33:44 +0000 (04:33 +1100)
committerBen Elliston <bje@gnu.org>
Tue, 16 Feb 2016 17:33:44 +0000 (04:33 +1100)
verbose when outputting the captured compiler/assembler/linker
diagnostic output as it will already be in the .log file courtesy
of Expect.

ChangeLog
lib/target.exp

index 39a18d8..464dbb4 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,4 +1,11 @@
-2016-02-15  Ben Elliston  <bje@gnu.org>
+2016-02-17  Ben Elliston  <bje@gnu.org>
+
+       * lib/target.exp (default_target_compile): Do not pass -log to
+       verbose when outputting the captured compiler/assembler/linker
+       diagnostic output as it will already be in the .log file courtesy
+       of Expect.
+
+2016-02-17  Ben Elliston  <bje@gnu.org>
 
        * runtest.exp: Enable --status by default.
        (runtest): Set exit status to 2 if there is any error sourcing
index 6749caa..e8c9047 100644 (file)
@@ -655,7 +655,7 @@ proc default_target_compile {source destfile type options} {
        verbose -log "compiler exited with status [lindex $status 0]"
     }
     if { [lindex $status 1] != "" } {
-       verbose -log "output is:\n[lindex $status 1]" 2
+       verbose "output is:\n[lindex $status 1]" 2
     }
     if { [lindex $status 0] != 0 && "${comp_output}" == "" } {
        set comp_output "exit status is [lindex $status 0]"
@@ -711,7 +711,7 @@ proc default_target_assemble { source destfile flags } {
        verbose -log "assembler exited with status [lindex $status 0]"
     }
     if { [lindex $status 1] != "" } {
-       verbose -log "assembler output is:\n[lindex $status 1]" 2
+       verbose "assembler output is:\n[lindex $status 1]" 2
     }
     return ${comp_output}
 }
@@ -803,7 +803,7 @@ proc default_link { board objects destfile flags } {
        verbose -log "linker exited with status [lindex $status 0]"
     }
     if { [lindex $status 1] != "" } {
-       verbose -log "linker output is:\n[lindex $status 1]" 2
+       verbose "linker output is:\n[lindex $status 1]" 2
     }
     return ${comp_output}
 }