Skip to content
Snippets Groups Projects
Commit da28e1e1 authored by H.J. Lu's avatar H.J. Lu
Browse files

2006-04-10 H.J. Lu <hongjiu.lu@intel.com>

	* lib/utils-lib.exp (default_binutils_run): Check exit status.
parent 05d58145
No related branches found
No related tags found
No related merge requests found
2006-04-10 H.J. Lu <hongjiu.lu@intel.com>
* lib/utils-lib.exp (default_binutils_run): Check exit status.
2005-12-24 Ben Elliston <bje@gnu.org>
* config/default.exp: Do not load the unneeded util-defs.exp.
......
......@@ -73,6 +73,12 @@ proc default_binutils_run { prog progargs } {
if {![string match "" $exec_output]} then {
send_log "$exec_output\n"
verbose "$exec_output"
} else {
if { [lindex $state 0] != 0 } {
set exec_output "$prog exited with status [lindex $state 0]"
send_log "$exec_output\n"
verbose "$exec_output"
}
}
return $exec_output
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment