strace/tests/uname.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

44 lines
877 B
C

#include "tests.h"
#include <asm/unistd.h>
#ifdef __NR_uname
# include <stdio.h>
# include <sys/utsname.h>
# include <unistd.h>
int main(int ac, char **av)
{
int abbrev = ac > 1;
TAIL_ALLOC_OBJECT_CONST_PTR(struct utsname, uname);
int rc = syscall(__NR_uname, uname);
printf("uname({sysname=");
print_quoted_string(uname->sysname);
printf(", nodename=");
print_quoted_string(uname->nodename);
if (abbrev) {
printf(", ...");
} else {
printf(", release=");
print_quoted_string(uname->release);
printf(", version=");
print_quoted_string(uname->version);
printf(", machine=");
print_quoted_string(uname->machine);
# ifdef HAVE_STRUCT_UTSNAME_DOMAINNAME
printf(", domainname=");
print_quoted_string(uname->domainname);
# endif
}
printf("}) = %d\n", rc);
puts("+++ exited with 0 +++");
return 0;
}
#else
SKIP_MAIN_UNDEFINED("__NR_uname")
#endif