summaryrefslogtreecommitdiff
path: root/tests/ext4/037
blob: 5ecb9f83b80ff7ae1dd995d3a0c9a85473c19e19 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#! /bin/bash
# SPDX-License-Identifier: GPL-2.0
# Copyright (c) 2015 Red Hat Inc.  All Rights Reserved.
#
# FS QA Test ext4/037
#
# Test mount a needs_recovery partition with noload option.
# ext4 used to Oops until part of this commit:
#
# 744692d ext4: use ext4_get_block_write in buffer write
#
. ./common/preamble
_begin_fstest auto quick

# Import common functions.
. ./common/filter

# real QA test starts here
_supported_fs ext3 ext4

# nofsck as we modify sb via debugfs
_require_scratch_nocheck

echo "Silence is golden"

_scratch_mkfs >>$seqres.full 2>&1

# set needs_recovery feature bit
debugfs -w -R "feature +needs_recovery" $SCRATCH_DEV \
	>>$seqres.full 2>&1

# mount with noload option
_try_scratch_mount "-o noload" >>$seqres.full 2>&1

# success, all done
status=0
exit