From: Dave Chinner <david@fromorbit.com>
To: xfs@oss.sgi.com
Subject: [PATCH] xfsqa: test 214 leaves files around that cause 236 to fail
Date: Mon, 21 Jun 2010 09:42:58 +1000 [thread overview]
Message-ID: <1277077378-17927-1-git-send-email-david@fromorbit.com> (raw)
From: Dave Chinner <dchinner@redhat.com>
Test 214 and 236 use the same file names for test files in the TEST
filesystem and don't check/create clean initial test state. Hence if
you run 214 then 236, 236 will fail with:
+link: cannot create link `/mnt/test/ouch2' to `/mnt/test/ouch': File exists
+ctime: 1277076527 -> 1277076527
+Fatal error: ctime not updated after link
Ensure that both tests clean up after themselves properly and also
ensure a clean state before they start.
Signed-off-by: Dave Chinner <dchinner@redhat.com>
---
214 | 2 ++
236 | 13 +++++--------
2 files changed, 7 insertions(+), 8 deletions(-)
diff --git a/214 b/214
index eb18825..cef7626 100755
--- a/214
+++ b/214
@@ -29,6 +29,7 @@ echo "QA output created by $seq"
_cleanup()
{
+ rm -f $TEST_DIR/ouch*
cd /
rm -f $tmp.*
}
@@ -51,6 +52,7 @@ _supported_os Linux
[ -n "$XFS_IO_PROG" ] || _notrun "xfs_io executable not found"
rm -f $seq.full
+rm -f $TEST_DIR/ouch*
_require_xfs_io_falloc
diff --git a/236 b/236
index 4d257f0..a7500ed 100644
--- a/236
+++ b/236
@@ -30,15 +30,12 @@ echo "QA output created by $seq"
_cleanup()
{
- if [ -a $TEST_DIR/ouch2 ]; then
- rm -f $TEST_DIR/ouch2
- fi
- if [ -a $TEST_DIR/ouch ]; then
- rm -f $TEST_DIR/ouch
- fi
+ rm -f $TEST_DIR/ouch*
}
here=`pwd`
+status=1 # failure is the default!
+trap "_cleanup; exit \$status" 0 1 2 3 15
# get standard environment, filters and checks
. ./common.rc
@@ -48,6 +45,8 @@ _supported_fs generic
# only Linux supports fallocate
_supported_os Linux
+rm -f $TEST_DIR/ouch*
+
# create a file and get its ctime
touch $TEST_DIR/ouch
ctime=`stat -c %Z $TEST_DIR/ouch`
@@ -65,8 +64,6 @@ if [ $ctime2 -le $ctime ]; then
exit 1
fi
-_cleanup
-
echo "Test over."
# success, all done
status=0
--
1.7.1
_______________________________________________
xfs mailing list
xfs@oss.sgi.com
http://oss.sgi.com/mailman/listinfo/xfs
next reply other threads:[~2010-06-20 23:40 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-06-20 23:42 Dave Chinner [this message]
2010-06-21 7:21 ` [PATCH] xfsqa: test 214 leaves files around that cause 236 to fail Christoph Hellwig
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1277077378-17927-1-git-send-email-david@fromorbit.com \
--to=david@fromorbit.com \
--cc=xfs@oss.sgi.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox