xref: /aosp_15_r20/external/ltp/lib/newlib_tests/shell/tst_check_kconfig01.sh (revision 49cdfc7efb34551c7342be41a7384b9c40d7cab7)
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
6TST_NEEDS_KCONFIGS="CONFIG_EXT4"
7
8do_test()
9{
10	tst_res TFAIL "kernel .config doesn't have CONFIG_EXT4"
11}
12
13. tst_test.sh
14tst_run
15