* [PATCH] tests/btrfs: add tests to the remount group
@ 2023-11-22 8:55 Anand Jain
2023-11-22 14:07 ` Josef Bacik
0 siblings, 1 reply; 2+ messages in thread
From: Anand Jain @ 2023-11-22 8:55 UTC (permalink / raw)
To: fstests; +Cc: linux-btrfs
Several test cases under tests/btrfs are missing from the remount
group. This patch adds the test cases that use -o remount to the remount
group.
Signed-off-by: Anand Jain <anand.jain@oracle.com>
---
tests/btrfs/015 | 2 +-
tests/btrfs/163 | 2 +-
tests/btrfs/164 | 2 +-
tests/btrfs/167 | 2 +-
tests/btrfs/220 | 2 +-
tests/btrfs/233 | 2 +-
tests/btrfs/258 | 2 +-
tests/btrfs/263 | 2 +-
tests/btrfs/276 | 2 +-
tests/btrfs/293 | 2 +-
tests/btrfs/301 | 2 +-
11 files changed, 11 insertions(+), 11 deletions(-)
diff --git a/tests/btrfs/015 b/tests/btrfs/015
index 7398f9bfd84c..aeec8cc917c5 100755
--- a/tests/btrfs/015
+++ b/tests/btrfs/015
@@ -8,7 +8,7 @@
# readonly and remounting rw.
#
. ./common/preamble
-_begin_fstest auto quick snapshot
+_begin_fstest auto quick snapshot remount
# Import common functions.
. ./common/filter
diff --git a/tests/btrfs/163 b/tests/btrfs/163
index c2a04791aa67..da31cfb8f1dd 100755
--- a/tests/btrfs/163
+++ b/tests/btrfs/163
@@ -14,7 +14,7 @@
# c6a5d954950c btrfs: fail replace of seed device
. ./common/preamble
-_begin_fstest auto quick volume seed
+_begin_fstest auto quick volume seed remount
# Override the default cleanup function.
_cleanup()
diff --git a/tests/btrfs/164 b/tests/btrfs/164
index 43c55c163cf2..bc62b535ca0c 100755
--- a/tests/btrfs/164
+++ b/tests/btrfs/164
@@ -10,7 +10,7 @@
# Remount RW
# Run device delete on the seed device
. ./common/preamble
-_begin_fstest auto quick volume
+_begin_fstest auto quick volume remount
# Override the default cleanup function.
_cleanup()
diff --git a/tests/btrfs/167 b/tests/btrfs/167
index fb271cfa1369..99c984f433dc 100755
--- a/tests/btrfs/167
+++ b/tests/btrfs/167
@@ -11,7 +11,7 @@
# ac0b4145d662 ("btrfs: scrub: Don't use inode pages for device replace")
#
. ./common/preamble
-_begin_fstest auto quick replace volume
+_begin_fstest auto quick replace volume remount
# Import common functions.
. ./common/filter
diff --git a/tests/btrfs/220 b/tests/btrfs/220
index b092f40bc1e0..cc092c143274 100755
--- a/tests/btrfs/220
+++ b/tests/btrfs/220
@@ -8,7 +8,7 @@
# * device= argument is already being test by btrfs/125
# * space cache test already covered by test btrfs/131
. ./common/preamble
-_begin_fstest auto quick
+_begin_fstest auto quick remount
_register_cleanup "cleanup"
diff --git a/tests/btrfs/233 b/tests/btrfs/233
index 6a4144433073..2b94a9c6befe 100755
--- a/tests/btrfs/233
+++ b/tests/btrfs/233
@@ -9,7 +9,7 @@
# performed.
#
. ./common/preamble
-_begin_fstest auto quick subvol
+_begin_fstest auto quick subvol remount
# Override the default cleanup function.
_cleanup()
diff --git a/tests/btrfs/258 b/tests/btrfs/258
index e4a23dcc4e7f..a4d15c431e6c 100755
--- a/tests/btrfs/258
+++ b/tests/btrfs/258
@@ -8,7 +8,7 @@
# in the middle
#
. ./common/preamble
-_begin_fstest auto defrag quick fiemap
+_begin_fstest auto defrag quick fiemap remount
. ./common/filter
diff --git a/tests/btrfs/263 b/tests/btrfs/263
index 8ff363d15049..5bf8d49998f3 100755
--- a/tests/btrfs/263
+++ b/tests/btrfs/263
@@ -8,7 +8,7 @@
# defragmentation.
#
. ./common/preamble
-_begin_fstest auto quick defrag fiemap
+_begin_fstest auto quick defrag fiemap remount
# Import common functions.
. ./common/filter
diff --git a/tests/btrfs/276 b/tests/btrfs/276
index 8a21963c1223..6470a2f6e62e 100755
--- a/tests/btrfs/276
+++ b/tests/btrfs/276
@@ -9,7 +9,7 @@
# and when the file's subvolume was snapshoted.
#
. ./common/preamble
-_begin_fstest auto snapshot fiemap
+_begin_fstest auto snapshot fiemap remount
. ./common/filter
. ./common/attr
diff --git a/tests/btrfs/293 b/tests/btrfs/293
index 5cbbee8fd1c6..cded956468ee 100755
--- a/tests/btrfs/293
+++ b/tests/btrfs/293
@@ -9,7 +9,7 @@
# are removed, we will be able to activate the swapfile.
#
. ./common/preamble
-_begin_fstest auto quick swap snapshot
+_begin_fstest auto quick swap snapshot remount
_cleanup()
{
diff --git a/tests/btrfs/301 b/tests/btrfs/301
index 7a0b4c0e1012..16126471a024 100755
--- a/tests/btrfs/301
+++ b/tests/btrfs/301
@@ -8,7 +8,7 @@
# removing them in various orders.
#
. ./common/preamble
-_begin_fstest auto quick qgroup clone subvol prealloc snapshot
+_begin_fstest auto quick qgroup clone subvol prealloc snapshot remount
# Import common functions.
. ./common/reflink
--
2.31.1
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] tests/btrfs: add tests to the remount group
2023-11-22 8:55 [PATCH] tests/btrfs: add tests to the remount group Anand Jain
@ 2023-11-22 14:07 ` Josef Bacik
0 siblings, 0 replies; 2+ messages in thread
From: Josef Bacik @ 2023-11-22 14:07 UTC (permalink / raw)
To: Anand Jain; +Cc: fstests, linux-btrfs
On Wed, Nov 22, 2023 at 04:55:44PM +0800, Anand Jain wrote:
> Several test cases under tests/btrfs are missing from the remount
> group. This patch adds the test cases that use -o remount to the remount
> group.
>
> Signed-off-by: Anand Jain <anand.jain@oracle.com>
> ---
Reviewed-by: Josef Bacik <josef@toxicpanda.com>
Thanks,
Josef
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2023-11-22 14:07 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-11-22 8:55 [PATCH] tests/btrfs: add tests to the remount group Anand Jain
2023-11-22 14:07 ` Josef Bacik
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox