aboutsummaryrefslogtreecommitdiff
path: root/sim
diff options
context:
space:
mode:
authorBen Elliston <bje@au.ibm.com>2004-01-23 03:15:27 +0000
committerBen Elliston <bje@au.ibm.com>2004-01-23 03:15:27 +0000
commit2345c93c5f198a22aeefbbfd7021dbba967758a7 (patch)
treeb39193dcaaa9d3504c4da0a40b0ae5ccdcf7853b /sim
parenta69fbd84ce961eeaac361dfdfa56966249f6db0a (diff)
downloadfsf-binutils-gdb-2345c93c5f198a22aeefbbfd7021dbba967758a7.zip
fsf-binutils-gdb-2345c93c5f198a22aeefbbfd7021dbba967758a7.tar.gz
fsf-binutils-gdb-2345c93c5f198a22aeefbbfd7021dbba967758a7.tar.bz2
* lib/sim-defs.exp (run_sim_test): Delete the .o and .x files if a
test passes.
Diffstat (limited to 'sim')
-rw-r--r--sim/testsuite/ChangeLog5
-rw-r--r--sim/testsuite/lib/sim-defs.exp2
2 files changed, 7 insertions, 0 deletions
diff --git a/sim/testsuite/ChangeLog b/sim/testsuite/ChangeLog
index cbd36e3..22f2974 100644
--- a/sim/testsuite/ChangeLog
+++ b/sim/testsuite/ChangeLog
@@ -1,3 +1,8 @@
+2004-01-23 Ben Elliston <bje@wasabisystems.com>
+
+ * lib/sim-defs.exp (run_sim_test): Delete the .o and .x files if a
+ test passes.
+
2003-10-10 Dave Brolley <brolley@redhat.com>
* sim/frv/testutils.inc (or_gr_immed): New macro.
diff --git a/sim/testsuite/lib/sim-defs.exp b/sim/testsuite/lib/sim-defs.exp
index 017fcef..e755717 100644
--- a/sim/testsuite/lib/sim-defs.exp
+++ b/sim/testsuite/lib/sim-defs.exp
@@ -289,6 +289,7 @@ proc run_sim_test { name requested_machs } {
if { "$opts(xerror)" == "no" } {
if [string match $opts(output) $output] {
pass "$mach $testname"
+ file delete ${name}.o ${name}.x
} else {
verbose -log "output: $output" 3
verbose -log "pattern: $opts(output)" 3
@@ -304,6 +305,7 @@ proc run_sim_test { name requested_machs } {
} else {
if [string match $opts(output) $output] {
pass "$mach $testname"
+ file delete ${name}.o ${name}.x
} else {
verbose -log "output: $output" 3
verbose -log "pattern: $opts(output)" 3