public inbox for fstests@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2] generic/007: cleanup $TEST_DIR/$seq dir
@ 2017-02-03 11:05 Amir Goldstein
  0 siblings, 0 replies; only message in thread
From: Amir Goldstein @ 2017-02-03 11:05 UTC (permalink / raw)
  To: Eryu Guan; +Cc: fstests

Test generic/007 was failing after running test overlay/007,
because the latter left behind a non empty directory named 007
in test dir and the former failed to mkdir a directory with the
same name.

Cleanup $TEST_DIR/$seq both at end of overlay/007 and beginning of
generic/007 to avoid this collision.

Signed-off-by: Amir Goldstein <amir73il@gmail.com>
---
 tests/generic/007 | 1 +
 tests/overlay/007 | 1 +
 2 files changed, 2 insertions(+)

v2:
- Cleanup just $TEST_DIR/007

v1:
- Cleanup $TEST_DIR/$seq* files after tests

diff --git a/tests/generic/007 b/tests/generic/007
index 88cd6cc..cfa4554 100755
--- a/tests/generic/007
+++ b/tests/generic/007
@@ -64,6 +64,7 @@ while [ $i -le $num_filenames ]; do
   let i=$i+1
 done
 
+rm -rf $TEST_DIR/$seq
 mkdir $TEST_DIR/$seq
 cd $TEST_DIR/$seq
 $here/src/nametest -l $sourcefile -s $seed -i $iterations -z
diff --git a/tests/overlay/007 b/tests/overlay/007
index ccf2b75..ed7914b 100755
--- a/tests/overlay/007
+++ b/tests/overlay/007
@@ -37,6 +37,7 @@ _cleanup()
 {
 	cd /
 	rm -f $tmp.*
+	rm -rf $TEST_DIR/$seq
 }
 
 # get standard environment, filters and checks
-- 
2.7.4


^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2017-02-03 11:05 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-02-03 11:05 [PATCH v2] generic/007: cleanup $TEST_DIR/$seq dir Amir Goldstein

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox