Skip to content

Commit 7c4e693

Browse files
committed
xfstests.py.data: Add ci.yaml files for quick testing
Sometimes for validating CI runs, we require just one common test e.g. generic/001. This adds test.yaml for all filesystems for quick validation of CI runs. Signed-off-by: Ritesh Harjani (IBM) <[email protected]> rename test.yaml to ci.yaml Signed-off-by: Ritesh Harjani (IBM) <[email protected]>
1 parent d3c9280 commit 7c4e693

File tree

4 files changed

+66
-0
lines changed

4 files changed

+66
-0
lines changed

Diff for: fs/xfstests.py.data/btrfs/ci.yaml

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
scratch_mnt: '/mnt/scratch'
2+
test_mnt: '/mnt/test'
3+
disk_mnt: '/mnt/loop-device'
4+
5+
loop_type: !mux
6+
type: 'loop'
7+
loop_size: '5GiB'
8+
# Option to provide disk for loop device creation,
9+
# Uses '/' by default for file creation
10+
disk: "null"
11+
12+
fs_type: !mux
13+
fs_btrfs_4k:
14+
fs: 'btrfs'
15+
args: '-R xunit generic/001'
16+
mkfs_opt: '-f -s 4096 -n 4096'
17+
mount_opt: ''

Diff for: fs/xfstests.py.data/ext2/ci.yaml

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
scratch_mnt: '/mnt/scratch'
2+
test_mnt: '/mnt/test'
3+
disk_mnt: '/mnt/loop-device'
4+
5+
loop_section:
6+
type: 'loop'
7+
loop_size: '12GiB'
8+
disk: "null"
9+
10+
fs_type: !mux
11+
fs_ext2_4k:
12+
fs: 'ext2'
13+
args: '-R xunit generic/001'
14+
mkfs_opt: '-F -b 4096'
15+
mount_opt: ''

Diff for: fs/xfstests.py.data/ext4/ci.yaml

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
scratch_mnt: '/mnt/scratch'
2+
test_mnt: '/mnt/test'
3+
disk_mnt: '/mnt/loop-device'
4+
5+
loop_type: !mux
6+
type: 'loop'
7+
loop_size: '12GiB'
8+
# Option to provide disk for loop device creation,
9+
# Uses '/' by default for file creation
10+
disk: "null"
11+
12+
fs_type: !mux
13+
fs_ext4_4k:
14+
fs: 'ext4'
15+
args: '-R xunit generic/001'
16+
mkfs_opt: '-b 4096'
17+
mount_opt: '-o block_validity'

Diff for: fs/xfstests.py.data/xfs/ci.yaml

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
scratch_mnt: '/mnt/scratch'
2+
test_mnt: '/mnt/test'
3+
disk_mnt: '/mnt/loop-device'
4+
5+
loop_type: !mux
6+
type: 'loop'
7+
loop_size: '12GiB'
8+
# Option to provide disk for loop device creation,
9+
# Uses '/' by default for file creation
10+
disk: "null"
11+
12+
fs_type: !mux
13+
fs_xfs_4k:
14+
fs: 'xfs'
15+
args: '-R xunit generic/001'
16+
mkfs_opt: '-f -b size=4096'
17+
mount_opt: ''

0 commit comments

Comments
 (0)