strace/tests/symlink.c
Fei Jie 13c1d0899d tests: add symlink.test
* tests/symlink.c: New file.
* tests/symlink.test: New test.
* tests/.gitignore: Add symlink.
* tests/Makefile.am (check_PROGRAMS): Likewise.
(DECODER_TESTS): Add symlink.test.
2016-04-25 10:24:48 +00:00

28 lines
466 B
C

#include "tests.h"
#include <sys/syscall.h>
#ifdef __NR_symlink
# include <stdio.h>
# include <unistd.h>
int
main(void)
{
static const char sample_1[] = "symlink_new";
static const char sample_2[] = "symlink";
long rc = syscall(__NR_symlink, sample_1, sample_2);
printf("symlink(\"%s\", \"%s\") = %ld %s (%m)\n",
sample_1, sample_2, rc, errno2name());
puts("+++ exited with 0 +++");
return 0;
}
#else
SKIP_MAIN_UNDEFINED("__NR_symlink")
#endif