strace/tests/getcwd.c
JingPiao Chen 8d71474ea1 tests: print quotation marks in print_quoted_memory
* tests/print_quoted_string.c (print_quoted_memory): Print opening
and closing quotation marks.
* tests/getcwd.c (main): Do not print quotation marks around
print_quoted_string.
* tests/uname.c (main): Likewise.
* tests/keyctl.c (print_quoted_string_limit): Do not print quotation
marks around print_quoted_memory.
* tests/netlink_protocol.c (send_query): Likewise.
* tests/xattr.c (main): Likewise.
2017-07-07 16:43:41 +00:00

47 lines
920 B
C

#include "tests.h"
#include <asm/unistd.h>
#ifdef __NR_getcwd
# include <stdio.h>
# include <unistd.h>
# include <sys/param.h>
int
main(void)
{
long res;
char cur_dir[PATH_MAX + 1];
static const size_t bogus_size = (size_t) 0xbadc0deddeadfaceULL;
res = syscall(__NR_getcwd, cur_dir, sizeof(cur_dir));
if (res <= 0)
perror_msg_and_fail("getcwd");
printf("getcwd(");
print_quoted_string(cur_dir);
printf(", %zu) = %ld\n", sizeof(cur_dir), res);
res = syscall(__NR_getcwd, cur_dir, 0);
printf("getcwd(%p, 0) = %s\n", cur_dir, sprintrc(res));
res = syscall(__NR_getcwd, NULL, bogus_size);
printf("getcwd(NULL, %zu) = %s\n", bogus_size, sprintrc(res));
res = syscall(__NR_getcwd, (void *) -1L, sizeof(cur_dir));
printf("getcwd(%p, %zu) = %s\n",
(void *) -1L, sizeof(cur_dir), sprintrc(res));
puts("+++ exited with 0 +++");
return 0;
}
#else
SKIP_MAIN_UNDEFINED("__NR_getcwd");
#endif