1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90
|
/* libguestfs
* Copyright (C) 2016 Red Hat Inc.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#include <config.h>
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#include <error.h>
#include <errno.h>
#include "ignore-value.h"
#include "guestfs.h"
#include "guestfs-internal-frontend.h"
#include "boot-analysis-utils.h"
void
get_time (struct timespec *ts)
{
if (clock_gettime (CLOCK_REALTIME, ts) == -1)
error (EXIT_FAILURE, errno, "clock_gettime: CLOCK_REALTIME");
}
int64_t
timespec_diff (const struct timespec *x, const struct timespec *y)
{
int64_t nsec;
nsec = (y->tv_sec - x->tv_sec) * UINT64_C(1000000000);
nsec += y->tv_nsec - x->tv_nsec;
return nsec;
}
void
test_info (guestfs_h *g, int nr_test_passes)
{
const char *qemu = guestfs_get_hv (g);
CLEANUP_FREE char *cmd = NULL;
CLEANUP_FREE char *backend = NULL;
/* Related to the test program. */
printf ("test version: %s %s\n", PACKAGE_NAME, PACKAGE_VERSION_FULL);
printf (" test passes: %d\n", nr_test_passes);
/* Related to the host. */
printf ("host version: ");
fflush (stdout);
ignore_value (system ("uname -a"));
printf (" host CPU: ");
fflush (stdout);
ignore_value (system ("perl -n -e 'if (/^model name.*: (.*)/) { print \"$1\\n\"; exit }' /proc/cpuinfo"));
/* Related to qemu. */
backend = guestfs_get_backend (g);
printf (" backend: %-20s [to change set $LIBGUESTFS_BACKEND]\n",
backend);
printf (" qemu: %-20s [to change set $LIBGUESTFS_HV]\n", qemu);
printf ("qemu version: ");
fflush (stdout);
if (asprintf (&cmd, "%s -version", qemu) == -1)
error (EXIT_FAILURE, errno, "asprintf");
ignore_value (system (cmd));
printf (" smp: %-20d [to change use --smp option]\n",
guestfs_get_smp (g));
printf (" memsize: %-20d [to change use --memsize option]\n",
guestfs_get_memsize (g));
/* Related to the guest kernel. Be nice to get the guest
* kernel version here somehow (XXX).
*/
printf (" append: %-20s [to change use --append option]\n",
guestfs_get_append (g) ? : "");
}
|