2
0

qtest.c 431 B

12345678910111213141516171819202122232425
  1. /*
  2. * qtest stubs
  3. *
  4. * Copyright (c) 2014 Linaro Limited
  5. * Written by Peter Maydell
  6. *
  7. * This work is licensed under the terms of the GNU GPL, version 2 or later.
  8. * See the COPYING file in the top-level directory.
  9. */
  10. #include "qemu/osdep.h"
  11. #include "sysemu/qtest.h"
  12. /* Needed for qtest_allowed() */
  13. bool qtest_allowed;
  14. bool qtest_driver(void)
  15. {
  16. return false;
  17. }
  18. int64_t qtest_get_virtual_clock(void)
  19. {
  20. return 0;
  21. }