From 03b10639e730a253dc21ef79b123a012f26725b5 Mon Sep 17 00:00:00 2001 From: Andreas Dilger Date: Tue, 14 Aug 2012 11:33:24 -0400 Subject: [PATCH] tests: remove unused temporary files for MMP tests The MMP tests need to be run on a real disk instead of tmpfs, since the MMP block access is using O_DIRECT. As such, they create their own test files in the local testing directory instead of using the temporary file created in /tmp by the test_one script. Delete the tempfs file before clobbering TMPFILE, otherwise it will leave the unused file in /tmp after the test is completed. Signed-off-by: Andreas Dilger Signed-off-by: Theodore Ts'o --- tests/f_mmp/script | 1 + tests/f_mmp_garbage/script | 1 + tests/m_mmp/script | 1 + tests/t_mmp_1on/script | 1 + tests/t_mmp_2off/script | 1 + 5 files changed, 5 insertions(+) diff --git a/tests/f_mmp/script b/tests/f_mmp/script index 1b0ff79..05421c4 100644 --- a/tests/f_mmp/script +++ b/tests/f_mmp/script @@ -1,5 +1,6 @@ FSCK_OPT=-yf +[ -f "$TMPFILE" ] && rm -f $TMPFILE TMPFILE=$test_name.tmp > $TMPFILE diff --git a/tests/f_mmp_garbage/script b/tests/f_mmp_garbage/script index 02cc12a..d4d2cb3 100644 --- a/tests/f_mmp_garbage/script +++ b/tests/f_mmp_garbage/script @@ -1,5 +1,6 @@ FSCK_OPT=-yf +[ -f "$TMPFILE" ] && rm -f $TMPFILE TMPFILE=$test_name.tmp > $TMPFILE diff --git a/tests/m_mmp/script b/tests/m_mmp/script index 02b0b4b..dff98f0 100644 --- a/tests/m_mmp/script +++ b/tests/m_mmp/script @@ -2,6 +2,7 @@ DESCRIPTION="enable MMP during mke2fs" FS_SIZE=65536 MKE2FS_DEVICE_SECTSIZE=2048 export MKE2FS_DEVICE_SECTSIZE +[ -f "$TMPFILE" ] && rm -f $TMPFILE TMPFILE=$test_name.tmp > $TMPFILE stat -f $TMPFILE | grep -q "Type: tmpfs" diff --git a/tests/t_mmp_1on/script b/tests/t_mmp_1on/script index 8fc8158..d15b1e3 100644 --- a/tests/t_mmp_1on/script +++ b/tests/t_mmp_1on/script @@ -1,5 +1,6 @@ FSCK_OPT=-yf +[ -f "$TMPFILE" ] && rm -f $TMPFILE TMPFILE=$test_name.tmp > $TMPFILE diff --git a/tests/t_mmp_2off/script b/tests/t_mmp_2off/script index 1dee14e..572730b 100644 --- a/tests/t_mmp_2off/script +++ b/tests/t_mmp_2off/script @@ -1,5 +1,6 @@ FSCK_OPT=-yf +[ -f "$TMPFILE" ] && rm -f $TMPFILE TMPFILE=$test_name.tmp > $TMPFILE -- 1.8.3.1