15 lines
263 B
Bash
Executable File
15 lines
263 B
Bash
Executable File
#!/bin/sh
|
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
# Copyright (c) 2022 FUJITSU LIMITED. All rights reserved.
|
|
|
|
TST_TESTFUNC=do_test
|
|
TST_NEEDS_KCONFIGS="CONFIG_EXT4"
|
|
|
|
do_test()
|
|
{
|
|
tst_res TFAIL "kernel .config doesn't have CONFIG_EXT4"
|
|
}
|
|
|
|
. tst_test.sh
|
|
tst_run
|