From: Zhilong Liu <zlliu@suse.com>
To: Jes.Sorensen@gmail.com
Cc: linux-raid@vger.kernel.org, Zhilong Liu <zlliu@suse.com>
Subject: [PATCH 1/4] test/00readonly: Add unit case for testing readonly/readwrite
Date: Wed, 19 Jul 2017 19:11:12 +0800 [thread overview]
Message-ID: <1500462675-6463-2-git-send-email-zlliu@suse.com> (raw)
In-Reply-To: <1500462675-6463-1-git-send-email-zlliu@suse.com>
This is a test case for testing --readonly and
--readwrite feature, it covers common metadata
versions and raid levels.
Signed-off-by: Zhilong Liu <zlliu@suse.com>
---
tests/00readonly | 20 ++++++++++++++++++++
1 file changed, 20 insertions(+)
create mode 100644 tests/00readonly
diff --git a/tests/00readonly b/tests/00readonly
new file mode 100644
index 0000000..8467da7
--- /dev/null
+++ b/tests/00readonly
@@ -0,0 +1,20 @@
+#!/bin/bash
+
+for metadata in 0.9 1.0 1.1 1.2
+do
+ for level in linear raid0 raid1 raid4 raid5 raid6 raid10
+ do
+ mdadm -CR $md0 -l $level -n 4 --metadata=$metadata \
+ $dev1 $dev2 $dev3 $dev4 --assume-clean
+ check nosync
+ check $level
+ mdadm -ro $md0
+ check readonly &&
+ [ "$(cat /sys/block/md0/md/array_state)" == "readonly" ]
+ mdadm -w $md0
+ check $level
+ mdadm -S $md0
+ done
+done
+
+exit 0
--
1.8.3.1
next prev parent reply other threads:[~2017-07-19 11:11 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-07-19 11:11 [PATCH 0/4] mdadm/test: Update for mdadm test part Zhilong Liu
2017-07-19 11:11 ` Zhilong Liu [this message]
2017-07-19 11:37 ` [PATCH v2 1/4] test/00readonly: Add unit case for testing readonly/readwrite Zhilong Liu
2017-07-19 11:11 ` [PATCH 2/4] mdadm/test: Fixed the condition parsing error for array[] Zhilong Liu
2017-07-19 11:11 ` [PATCH 3/4] mdadm/test: Get rid of tests/testdev Zhilong Liu
2017-07-19 11:11 ` [PATCH 4/4] mdadm/test: Get rid of tests/check Zhilong Liu
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=1500462675-6463-2-git-send-email-zlliu@suse.com \
--to=zlliu@suse.com \
--cc=Jes.Sorensen@gmail.com \
--cc=linux-raid@vger.kernel.org \
/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;
as well as URLs for NNTP newsgroup(s).