Project Info Name.......: gnu-hello
Description: GNU Hello


gnu-hello       
Info
Commit...:b0cfcc23fbc78ac1900286c31552c79c5c54b217
Author...:karl <>
Committer:karl <>
Date.....:Tue Aug 22 20:28:27 2006 +0000
Parents..:5e32d2aca1bdd6b23ff23c3129a905477b0a55b8

Message
[project @ 2006-08-22 20:28:27 by karl]
rm subdirs on normal exit (from bruno)

Changes
diff --git a/tests/ChangeLog b/tests/ChangeLog
line changes: +6/-0
index 0d30679..dad8240
--- a/tests/ChangeLog
+++ b/tests/ChangeLog
@@ -1,5 +1,11 @@
 2006-08-21  Bruno Haible  <bruno@clisp.org>
 
+	* greeting-1: Remove also temporary subdirectories.
+	* hello-1: Likewise.
+	* traditional-1: Likewise.
+
+2006-08-21  Bruno Haible  <bruno@clisp.org>
+
 	* greeting-moon: New file.
 	* Makefile.am (TESTS): Add it.
 

diff --git a/tests/greeting-1 b/tests/greeting-1
line changes: +1/-1
index b1849bc..9ba8029
--- a/tests/greeting-1
+++ b/tests/greeting-1
@@ -28,6 +28,6 @@ ${HELLO} -g 'Nothing happens here.' > greeting-test1.out
 ${DIFF} greeting-test1.ok greeting-test1.out
 result=$?
 
-rm -f $tmpfiles
+rm -fr $tmpfiles
 
 exit $result

diff --git a/tests/hello-1 b/tests/hello-1
line changes: +1/-1
index 5b56e0e..b924644
--- a/tests/hello-1
+++ b/tests/hello-1
@@ -29,6 +29,6 @@ ${HELLO} > hello-test1.out
 ${DIFF} hello-test1.ok hello-test1.out
 result=$?
 
-rm -f $tmpfiles
+rm -fr $tmpfiles
 
 exit $result

diff --git a/tests/traditional-1 b/tests/traditional-1
line changes: +1/-1
index 87b5398..ccb49b7
--- a/tests/traditional-1
+++ b/tests/traditional-1
@@ -28,6 +28,6 @@ ${HELLO} --traditional > traditional-test1.out
 ${DIFF} traditional-test1.ok traditional-test1.out
 result=$?
 
-rm -f $tmpfiles
+rm -fr $tmpfiles
 
 exit $result

This website is licensed under AGPL-3.0. Feel free to copy!