[LTP] [PATCH 1/1] lib/test.sh:: Remove temporary directory only if we know the location
Petr Vorel
pvorel@suse.cz
Fri Jun 16 02:40:56 CEST 2017
This is a problem when a test TCONF before calling tst_tmpdir, but has
tst_rmdir in cleanup function (e.g. dhcp_lib.sh when failing on tst_check_cmds).
Now it has the same behaviour as deleting $TST_TMPDIR in tst_do_exit
in tst_test.sh.
Signed-off-by: Petr Vorel <pvorel@suse.cz>
---
testcases/lib/test.sh | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/testcases/lib/test.sh b/testcases/lib/test.sh
index 642f7eacf..d16444efa 100644
--- a/testcases/lib/test.sh
+++ b/testcases/lib/test.sh
@@ -132,8 +132,10 @@ tst_tmpdir()
tst_rmdir()
{
- cd "$LTPROOT"
- rm -r "$TST_TMPDIR"
+ if [ -n "$TST_TMPDIR" ]; then
+ cd "$LTPROOT"
+ rm -r "$TST_TMPDIR"
+ fi
}
#
--
2.12.2
More information about the ltp
mailing list