• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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
8. tst_test.sh
9
10do_test()
11{
12	tst_res TFAIL "kernel .config doesn't have CONFIG_EXT4"
13}
14
15tst_run
16