Changes since version 1.38.0: * test: use last matching qemu version (cjihrig) * win, util: rearrange uv_hrtime (Bartosz Sosnowski) * test: skip signal_multiple_loops test on QEMU (gengjiawen) * build: add android build to CI (gengjiawen) * test: extend fs_event_error_reporting timeout (cjihrig) * build: link libkvm on netbsd only (Alexander Tokmakov) * linux: refactor /proc file reader logic (Ben Noordhuis) * linux: read load average from /proc/loadavg (Ben Noordhuis) * android: remove patch code for below 21 (gengjiawen) * win: fix visual studio 2008 build (Arenoros) * win,tty: fix deadlock caused by inconsistent state (lander0s) * unix: use relaxed loads/stores for feature checks (Ben Noordhuis) * build: don't .gitignore m4/ax_pthread.m4 (Ben Noordhuis) * unix: fix gcc atomics feature check (Ben Noordhuis) * darwin: work around clock jumping back in time (Ben Noordhuis) * udp: fix write_queue cleanup on sendmmsg error (Santiago Gimeno) * src: build fix for Android (David Carlier) -----BEGIN PGP SIGNATURE----- Comment: GPGTools - https://gpgtools.org iQIzBAABCgAdFiEElK42Z1xGTWS6+mjddDQ5C9vpucUFAl7/Yg8ACgkQdDQ5C9vp ucXgdg//euAx0jByjpOdc4RjLAXpq+iEDuLQXIzT3GmvK3g5+ymrB1HVkw455l7o gHY9f/GM+A8wZBcLoyfMywLiSD78/HOrHwQ1MGiieMm1hPFr8OXQ4Z25Bdx/GsE4 2nCprDrfMrVUQs8eFVx30fjFvOymzhpHak173N6uBOVBLQRivQHSuOG4Dk7RJSAA iCIKQ6JulQ/yX0OFvvnYjwbnt5bCDlr1gTFX1HQZFi4dELIbdfaqn1AkY6COa4mc tKZRMC1rV81HejNAYFG2Js1QQaUKtMemyHUple6qRo/TYhsZXMaWShjOOHtBqT5X hQ8yqGLcaQhWXI7FlBK9aOFBc2/c7Jrxn78MFnd0C8kUHMT9oMhK3KOUHjJ4K5Zt sN06cS9Zj9Gpvcnzffohx6/0ePyIVHsEGBt8gRI3YCH4GR0A12WYc4Kr8YuJu11J 7WVEjIpxZBRajOq8xfA4n6brM0s8gwJvCm2/ypYZKbQ0kz0ZZD5nOK+Ax+ukdg51 cBtTyx0tme0bQPZkzJP5sMP6DqGKgHbMzeUueqJ5xXOuXWjnOZRWfxmT22RSc6vI 9D+9p12GD81KlYoprbKk5Fg/adIW/kKrT1cFMeKgcKhyuq8B5maDoaN/FP0oIZc2 p1Pv9KEJCo7gI35XwkEvEIDLJ1Ax8B8RQE+8sophzsxVxo5E+GE= =P+eq -----END PGP SIGNATURE----- Merge tag 'v1.38.1' into merge_1.38.1 PR-URL: https://github.com/libuv/libuv/pull/2927 Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
177 lines
5.8 KiB
C
177 lines
5.8 KiB
C
/* Copyright Joyent, Inc. and other Node contributors. All rights reserved.
|
|
*
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
* of this software and associated documentation files (the "Software"), to
|
|
* deal in the Software without restriction, including without limitation the
|
|
* rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
|
* sell copies of the Software, and to permit persons to whom the Software is
|
|
* furnished to do so, subject to the following conditions:
|
|
*
|
|
* The above copyright notice and this permission notice shall be included in
|
|
* all copies or substantial portions of the Software.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
|
* IN THE SOFTWARE.
|
|
*/
|
|
|
|
#include "uv.h"
|
|
#include "task.h"
|
|
#include <string.h>
|
|
|
|
|
|
TEST_IMPL(platform_output) {
|
|
/* TODO(gengjiawen): Fix test on QEMU. */
|
|
#if defined(__QEMU__)
|
|
RETURN_SKIP("Test does not currently work in QEMU");
|
|
#endif
|
|
|
|
char buffer[512];
|
|
size_t rss;
|
|
size_t size;
|
|
double uptime;
|
|
uv_pid_t pid;
|
|
uv_pid_t ppid;
|
|
uv_rusage_t rusage;
|
|
uv_cpu_info_t* cpus;
|
|
uv_interface_address_t* interfaces;
|
|
uv_passwd_t pwd;
|
|
uv_utsname_t uname;
|
|
int count;
|
|
int i;
|
|
int err;
|
|
|
|
err = uv_get_process_title(buffer, sizeof(buffer));
|
|
ASSERT(err == 0);
|
|
printf("uv_get_process_title: %s\n", buffer);
|
|
|
|
size = sizeof(buffer);
|
|
err = uv_cwd(buffer, &size);
|
|
ASSERT(err == 0);
|
|
printf("uv_cwd: %s\n", buffer);
|
|
|
|
err = uv_resident_set_memory(&rss);
|
|
#if defined(__MSYS__)
|
|
ASSERT(err == UV_ENOSYS);
|
|
#else
|
|
ASSERT(err == 0);
|
|
printf("uv_resident_set_memory: %llu\n", (unsigned long long) rss);
|
|
#endif
|
|
|
|
err = uv_uptime(&uptime);
|
|
#if defined(__PASE__)
|
|
ASSERT(err == UV_ENOSYS);
|
|
#else
|
|
ASSERT(err == 0);
|
|
ASSERT(uptime > 0);
|
|
printf("uv_uptime: %f\n", uptime);
|
|
#endif
|
|
|
|
err = uv_getrusage(&rusage);
|
|
ASSERT(err == 0);
|
|
ASSERT(rusage.ru_utime.tv_sec >= 0);
|
|
ASSERT(rusage.ru_utime.tv_usec >= 0);
|
|
ASSERT(rusage.ru_stime.tv_sec >= 0);
|
|
ASSERT(rusage.ru_stime.tv_usec >= 0);
|
|
printf("uv_getrusage:\n");
|
|
printf(" user: %llu sec %llu microsec\n",
|
|
(unsigned long long) rusage.ru_utime.tv_sec,
|
|
(unsigned long long) rusage.ru_utime.tv_usec);
|
|
printf(" system: %llu sec %llu microsec\n",
|
|
(unsigned long long) rusage.ru_stime.tv_sec,
|
|
(unsigned long long) rusage.ru_stime.tv_usec);
|
|
printf(" page faults: %llu\n", (unsigned long long) rusage.ru_majflt);
|
|
printf(" maximum resident set size: %llu\n",
|
|
(unsigned long long) rusage.ru_maxrss);
|
|
|
|
err = uv_cpu_info(&cpus, &count);
|
|
#if defined(__CYGWIN__) || defined(__MSYS__)
|
|
ASSERT(err == UV_ENOSYS);
|
|
#else
|
|
ASSERT(err == 0);
|
|
|
|
printf("uv_cpu_info:\n");
|
|
for (i = 0; i < count; i++) {
|
|
printf(" model: %s\n", cpus[i].model);
|
|
printf(" speed: %d\n", cpus[i].speed);
|
|
printf(" times.sys: %llu\n", (unsigned long long) cpus[i].cpu_times.sys);
|
|
printf(" times.user: %llu\n",
|
|
(unsigned long long) cpus[i].cpu_times.user);
|
|
printf(" times.idle: %llu\n",
|
|
(unsigned long long) cpus[i].cpu_times.idle);
|
|
printf(" times.irq: %llu\n", (unsigned long long) cpus[i].cpu_times.irq);
|
|
printf(" times.nice: %llu\n",
|
|
(unsigned long long) cpus[i].cpu_times.nice);
|
|
}
|
|
#endif
|
|
uv_free_cpu_info(cpus, count);
|
|
|
|
err = uv_interface_addresses(&interfaces, &count);
|
|
ASSERT(err == 0);
|
|
|
|
printf("uv_interface_addresses:\n");
|
|
for (i = 0; i < count; i++) {
|
|
printf(" name: %s\n", interfaces[i].name);
|
|
printf(" internal: %d\n", interfaces[i].is_internal);
|
|
printf(" physical address: ");
|
|
printf("%02x:%02x:%02x:%02x:%02x:%02x\n",
|
|
(unsigned char)interfaces[i].phys_addr[0],
|
|
(unsigned char)interfaces[i].phys_addr[1],
|
|
(unsigned char)interfaces[i].phys_addr[2],
|
|
(unsigned char)interfaces[i].phys_addr[3],
|
|
(unsigned char)interfaces[i].phys_addr[4],
|
|
(unsigned char)interfaces[i].phys_addr[5]);
|
|
|
|
if (interfaces[i].address.address4.sin_family == AF_INET) {
|
|
uv_ip4_name(&interfaces[i].address.address4, buffer, sizeof(buffer));
|
|
} else if (interfaces[i].address.address4.sin_family == AF_INET6) {
|
|
uv_ip6_name(&interfaces[i].address.address6, buffer, sizeof(buffer));
|
|
}
|
|
|
|
printf(" address: %s\n", buffer);
|
|
|
|
if (interfaces[i].netmask.netmask4.sin_family == AF_INET) {
|
|
uv_ip4_name(&interfaces[i].netmask.netmask4, buffer, sizeof(buffer));
|
|
printf(" netmask: %s\n", buffer);
|
|
} else if (interfaces[i].netmask.netmask4.sin_family == AF_INET6) {
|
|
uv_ip6_name(&interfaces[i].netmask.netmask6, buffer, sizeof(buffer));
|
|
printf(" netmask: %s\n", buffer);
|
|
} else {
|
|
printf(" netmask: none\n");
|
|
}
|
|
}
|
|
uv_free_interface_addresses(interfaces, count);
|
|
|
|
err = uv_os_get_passwd(&pwd);
|
|
ASSERT(err == 0);
|
|
|
|
printf("uv_os_get_passwd:\n");
|
|
printf(" euid: %ld\n", pwd.uid);
|
|
printf(" gid: %ld\n", pwd.gid);
|
|
printf(" username: %s\n", pwd.username);
|
|
printf(" shell: %s\n", pwd.shell);
|
|
printf(" home directory: %s\n", pwd.homedir);
|
|
printf(" gecos: %s\n", pwd.gecos);
|
|
|
|
pid = uv_os_getpid();
|
|
ASSERT(pid > 0);
|
|
printf("uv_os_getpid: %d\n", (int) pid);
|
|
ppid = uv_os_getppid();
|
|
ASSERT(ppid > 0);
|
|
printf("uv_os_getppid: %d\n", (int) ppid);
|
|
|
|
err = uv_os_uname(&uname);
|
|
ASSERT(err == 0);
|
|
printf("uv_os_uname:\n");
|
|
printf(" sysname: %s\n", uname.sysname);
|
|
printf(" release: %s\n", uname.release);
|
|
printf(" version: %s\n", uname.version);
|
|
printf(" machine: %s\n", uname.machine);
|
|
|
|
return 0;
|
|
}
|