These consume quite a bit of space (especially noticeable during batch
testing), but are rather mechanical to (re)create. In 2.28, when the
object file names used were changed (from dump<N>.o to names derived from
source file names), the tidying code wasn't updated (and hence lost its
effect).
}
# Tidy up.
-for { set i 1 } { $i < $max_sec / $secs_per_file } { incr i } {
- catch "exec rm -f tmpdir/dump$i.o" status
+for { set i 0 } { $i < $max_sec / $secs_per_file } { incr i } {
+ catch "exec rm -f tmpdir/sec64-$i.o" status
}