// SPDX-License-Identifier: GPL-2.0-or-later /* * Copyright (c) 2021 Yang Xu */ /* * Test Illegal format by using non-existing cmd. */ #include "tst_test.h" static void do_test(void) { tst_res(TFAIL, "Nonexisting command is present!"); } static struct tst_test test = { .test_all = do_test, .needs_cmds = (const char *[]) { "mkfs.ext45 >= 1.43.0", NULL } };