diff options
Diffstat (limited to 'tests/test_path.c')
-rw-r--r-- | tests/test_path.c | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/tests/test_path.c b/tests/test_path.c index def7441c8c..234ed97088 100644 --- a/tests/test_path.c +++ b/tests/test_path.c @@ -1,12 +1,21 @@ /* Test path override code */ -#define _GNU_SOURCE +#include "../config-host.h" +#include "../qemu-malloc.c" +#include "../cutils.c" #include "../path.c" +#include "../trace.c" +#ifdef CONFIG_SIMPLE_TRACE +#include "../simpletrace.c" +#endif + #include <stdarg.h> #include <sys/stat.h> #include <fcntl.h> +void qemu_log(const char *fmt, ...); + /* Any log message kills the test. */ -void gemu_log(const char *fmt, ...) +void qemu_log(const char *fmt, ...) { va_list ap; |