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