1#!/bin/sh 2# SPDX-License-Identifier: GPL-2.0-or-later 3# Copyright (c) 2022 FUJITSU LIMITED. All rights reserved. 4 5TST_TESTFUNC=do_test 6 7do_test() 8{ 9 tst_require_kconfigs "CONFIG_EXT4_FS" 10 tst_res TPASS "kernel .config has CONFIG_EXT4_FS" 11 12 tst_require_kconfigs "CONFIG_EXT4" 13 tst_res TFAIL "kernel .config has CONFIG_EXT4" 14} 15. tst_test.sh 16tst_run 17