// SPDX-FileCopyrightText: 2020 ret2libc // SPDX-License-Identifier: LGPL-3.0-only #include #include #include "../unit/minunit.h" #include "test_config.h" static bool test_rzpipe(void) { #ifndef __WINDOWS__ RzPipe *r = rzpipe_open(RIZIN_BUILD_PATH " -q0 ="); mu_assert("rzpipe can spawn", r); char *hello = rzpipe_cmd(r, "?e hello world"); mu_assert_streq(hello, "hello world\n", "rzpipe hello world"); free(hello); rzpipe_close(r); #else mu_test_status = MU_TEST_BROKEN; #endif mu_end; } static bool test_rzpipe_404(void) { #ifndef __WINDOWS__ RzPipe *r = rzpipe_open("ricin -q0 -"); mu_assert("rzpipe can spawn", !r); #else mu_test_status = MU_TEST_BROKEN; #endif mu_end; } static int all_tests() { mu_run_test(test_rzpipe); mu_run_test(test_rzpipe_404); return tests_passed != tests_run; } mu_main(all_tests)