Browse Source

2001-07-31 Ben Elliston <bje@redhat.com>

* lib/sim-defs.exp (run_sim_test): Include a description such as
	"assembling" or "linking" that identifies the phase a test fails
	in, for easier analysis of failures.
binutils-2_12-branch
Ben Elliston 25 years ago
parent
commit
f18ee7ef71
  1. 6
      sim/testsuite/ChangeLog
  2. 12
      sim/testsuite/lib/sim-defs.exp

6
sim/testsuite/ChangeLog

@ -1,3 +1,9 @@
2001-07-31 Ben Elliston <bje@redhat.com>
* lib/sim-defs.exp (run_sim_test): Include a description such as
"assembling" or "linking" that identifies the phase a test fails
in, for easier analysis of failures.
2000-11-01 Dave Brolley <brolley@cygnus.com>
* lib/sim-defs.exp (run_sm_test): Correct comment. "output" and

12
sim/testsuite/lib/sim-defs.exp

@ -254,7 +254,7 @@ proc run_sim_test { name requested_machs } {
if ![string match "" $comp_output] {
verbose -log "$comp_output" 3
fail "$mach $testname"
fail "$mach $testname (assembling)"
continue
}
@ -266,7 +266,7 @@ proc run_sim_test { name requested_machs } {
if ![string match "" $comp_output] {
verbose -log "$comp_output" 3
fail "$mach $testname"
fail "$mach $testname (linking)"
continue
}
@ -292,22 +292,22 @@ proc run_sim_test { name requested_machs } {
} else {
verbose -log "output: $output" 3
verbose -log "pattern: $opts(output)" 3
fail "$mach $testname"
fail "$mach $testname (execution)"
}
} else {
verbose -log "`pass' return code when expecting failure" 3
fail "$mach $testname"
fail "$mach $testname (execution)"
}
} elseif { "$status" == "fail" } {
if { "$opts(xerror)" == "no" } {
fail "$mach $testname"
fail "$mach $testname (execution)"
} else {
if [string match $opts(output) $output] {
pass "$mach $testname"
} else {
verbose -log "output: $output" 3
verbose -log "pattern: $opts(output)" 3
fail "$mach $testname"
fail "$mach $testname (execution)"
}
}
} else {

Loading…
Cancel
Save