// SPDX-License-Identifier: GPL-2.0-or-later /* * Copyright (c) 2021 Yang Xu */ /* * Test Illegal format by using Illegal operation. */ #include "tst_test.h" static void do_test(void) { tst_res(TFAIL, "Wrong operator was evaluated!"); } static struct tst_test test = { .test_all = do_test, .needs_cmds = (const char *[]) { "mkfs.ext4 ! 1.43.0", NULL } };