1// SPDX-License-Identifier: GPL-2.0-or-later 2/* 3 * Copyright (c) 2020 Cyril Hrubis <chrubis@suse.cz> 4 * 5 * Invalid boolean expression test. 6 */ 7 8#include "tst_test.h" 9 10static void do_test(void) 11{ 12 tst_res(TPASS, "Test passed!"); 13} 14 15static const char *kconfigs[] = { 16 "CONFIG_EXT4_FS=m | CONFIG_MMU)", 17 NULL 18}; 19 20static struct tst_test test = { 21 .test_all = do_test, 22 .needs_kconfigs = kconfigs, 23}; 24