1 /* SPDX-License-Identifier: LGPL-2.1-or-later */
2 
3 #include "analyze-verify-util.h"
4 #include "tests.h"
5 
TEST(verify_nonexistent)6 TEST(verify_nonexistent) {
7         /* Negative cases */
8         assert_se(verify_executable(NULL, &(ExecCommand) {.flags = EXEC_COMMAND_IGNORE_FAILURE, .path = (char*) "/non/existent"}, NULL) == 0);
9         assert_se(verify_executable(NULL, &(ExecCommand) {.path = (char*) "/non/existent"}, NULL) < 0);
10 
11         /* Ordinary cases */
12         assert_se(verify_executable(NULL, &(ExecCommand) {.path = (char*) "/bin/echo"}, NULL) == 0);
13         assert_se(verify_executable(NULL, &(ExecCommand) {.flags = EXEC_COMMAND_IGNORE_FAILURE, .path = (char*) "/bin/echo"}, NULL) == 0);
14 }
15 
16 DEFINE_TEST_MAIN(LOG_DEBUG);
17