1 #include "qemu/osdep.h"
2 #include "qemu/cutils.h"
5 #include "libqos/libqos-spapr.h"
6 #include "libqos/rtas.h"
8 static void test_rtas_get_time_of_day(void)
16 qs
= qtest_spapr_boot("-machine pseries");
19 ret
= qrtas_get_time_of_day(qs
->alloc
, &tm
, &ns
);
20 g_assert_cmpint(ret
, ==, 0);
22 g_assert(t2
- t1
< 5); /* 5 sec max to run the test */
27 int main(int argc
, char *argv
[])
29 const char *arch
= qtest_get_arch();
31 g_test_init(&argc
, &argv
, NULL
);
33 if (strcmp(arch
, "ppc64")) {
34 g_printerr("RTAS requires ppc64-softmmu/qemu-system-ppc64\n");
37 qtest_add_func("rtas/get-time-of-day", test_rtas_get_time_of_day
);