/* * Check decoding of pipe syscall. * * Copyright (c) 2015-2016 Dmitry V. Levin * Copyright (c) 2015-2019 The strace developers. * All rights reserved. * * SPDX-License-Identifier: GPL-2.0-or-later */ #include "tests.h" #include "scno.h" #ifdef __NR_pipe # include # include # include int main(void) { (void) close(0); (void) close(1); int *const fds = tail_alloc(sizeof(*fds) * 2); if (pipe(fds)) perror_msg_and_fail("pipe"); return 0; } #else SKIP_MAIN_UNDEFINED("__NR_pipe") #endif