Browse Source

* Makefile.am (DISTCLEANFILES): Define.

* Makefile.in: Regenerate.
	* testsuite/runtest.all/libs.exp: Clean up temp files on exit.
	* testsuite/runtest.all/options.exp: Likewise for dbg.log.
	* testsuite/runtest.all/stats.exp: Likewise for tmpdir. Use "file
	mkdir" instead of exec'ing mkdir(1).
dejagnu-1.5.2
Ben Elliston 16 years ago
parent
commit
54f20a63a4
  1. 9
      ChangeLog
  2. 2
      Makefile.am
  3. 2
      Makefile.in
  4. 3
      testsuite/runtest.all/libs.exp
  5. 3
      testsuite/runtest.all/options.exp
  6. 4
      testsuite/runtest.all/stats.exp

9
ChangeLog

@ -1,3 +1,12 @@
2011-03-09 Ben Elliston <bje@gnu.org>
* Makefile.am (DISTCLEANFILES): Define.
* Makefile.in: Regenerate.
* testsuite/runtest.all/libs.exp: Clean up temp files on exit.
* testsuite/runtest.all/options.exp: Likewise for dbg.log.
* testsuite/runtest.all/stats.exp: Likewise for tmpdir. Use "file
mkdir" instead of exec'ing mkdir(1).
2011-03-07 Ben Elliston <bje@gnu.org>
* Makefile.am (doc/dejagnu.texi): Conditional on MAINTAINER_MODE.

2
Makefile.am

@ -27,6 +27,8 @@ EXTRA_DIST = ChangeLog-1992 MAINTAINERS runtest site.tmpl \
$(baseboard_DATA) $(baseboard_SCRIPTS) \
$(TESTSUITE_FILES) $(XML) $(CONTRIB)
DISTCLEANFILES = xXx.log xXx.sum x.log x.sum testrun.log testrun.sum
bin_SCRIPTS = runtest
include_HEADERS = dejagnu.h

2
Makefile.in

@ -248,6 +248,7 @@ EXTRA_DIST = ChangeLog-1992 MAINTAINERS runtest site.tmpl \
$(baseboard_DATA) $(baseboard_SCRIPTS) \
$(TESTSUITE_FILES) $(XML) $(CONTRIB)
DISTCLEANFILES = xXx.log xXx.sum x.log x.sum testrun.log testrun.sum
bin_SCRIPTS = runtest
include_HEADERS = dejagnu.h
pkgdata_SCRIPTS = \
@ -1233,6 +1234,7 @@ distclean-generic:
-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
-test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
-rm -f doc/$(am__dirstamp)
-test -z "$(DISTCLEANFILES)" || rm -f $(DISTCLEANFILES)
maintainer-clean-generic:
@echo "This command is intended for maintainers to use"

3
testsuite/runtest.all/libs.exp

@ -84,3 +84,6 @@ make_defaults_file [pwd]/setval.tmp
foreach i [glob $srcdir/$subdir/*.test] {
process_test $i
}
# Clean up behind ourselves.
file delete .tmp [pwd]/setval.tmp

3
testsuite/runtest.all/options.exp

@ -89,3 +89,6 @@ if [file exists $objdir/x.sum] {
if [file exists $objdir/xXx.sum] {
exec rm -f $objdir/xXx.*
}
if [file exists dbg.log] {
file delete dbg.log
}

4
testsuite/runtest.all/stats.exp

@ -28,7 +28,7 @@ if ![info exists tmpdir] {
}
if ![file isdirectory $tmpdir] {
catch "exec mkdir $tmpdir"
catch "file mkdir $tmpdir"
}
set tests {
@ -53,3 +53,5 @@ foreach t $tests {
pass [lindex $t 0]
}
}
file delete -force $tmpdir

Loading…
Cancel
Save