summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Weil2014-03-07 11:11:22 +0100
committerMichael Tokarev2014-03-15 10:54:18 +0100
commit6d4adef48dd6bb738474ab857f4fcb240ff9d2d6 (patch)
treeaccb95b1ce02ad393912f62c3ed739344265adb4
parentmisc: Fix typos in comments (diff)
downloadqemu-6d4adef48dd6bb738474ab857f4fcb240ff9d2d6.tar.gz
qemu-6d4adef48dd6bb738474ab857f4fcb240ff9d2d6.tar.xz
qemu-6d4adef48dd6bb738474ab857f4fcb240ff9d2d6.zip
tests: Fix 'make test' for i686 hosts (build regression)
'make test' is broken at least since commit baacf04799ace72a9c735dd9306a1ceaf305e7cf. Several source files were moved to util/, and some of them there split, so add the missing prefix and new files to fix the compiler and linker errors. There remain more issues, but these changes allow running the test on a Linux i686 host. Cc: qemu-stable@nongnu.org Signed-off-by: Stefan Weil <sw@weilnetz.de> Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
-rw-r--r--tests/tcg/test_path.c13
1 files changed, 8 insertions, 5 deletions
diff --git a/tests/tcg/test_path.c b/tests/tcg/test_path.c
index a064eea8fb..f8dd36aab2 100644
--- a/tests/tcg/test_path.c
+++ b/tests/tcg/test_path.c
@@ -1,12 +1,15 @@
/* Test path override code */
#define _GNU_SOURCE
#include "config-host.h"
-#include "iov.c"
-#include "cutils.c"
-#include "path.c"
-#include "trace.c"
+#include "util/cutils.c"
+#include "util/hexdump.c"
+#include "util/iov.c"
+#include "util/path.c"
+#include "util/qemu-timer-common.c"
+#include "trace/control.c"
+#include "../trace/generated-events.c"
#ifdef CONFIG_TRACE_SIMPLE
-#include "../trace/simple.c"
+#include "trace/simple.c"
#endif
#include <stdarg.h>