37 lines
565 B
C
37 lines
565 B
C
/*
|
|
* Check decoding of pipe syscall.
|
|
*
|
|
* Copyright (c) 2015-2016 Dmitry V. Levin <ldv@altlinux.org>
|
|
* Copyright (c) 2015-2018 The strace developers.
|
|
* All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0-or-later
|
|
*/
|
|
|
|
#include "tests.h"
|
|
#include <asm/unistd.h>
|
|
|
|
#ifdef __NR_pipe
|
|
|
|
# include <stdio.h>
|
|
# include <fcntl.h>
|
|
# include <unistd.h>
|
|
|
|
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
|