1:255.13-alt1
[systemd_ALT.git] / src / analyze / test-verify.c
blobd37e54bca634b17377cc39d5b1e35f6a5907cd80
1 /* SPDX-License-Identifier: LGPL-2.1-or-later */
3 #include "analyze-verify-util.h"
4 #include "tests.h"
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);
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);
16 DEFINE_TEST_MAIN(LOG_DEBUG);