summaryrefslogtreecommitdiff
path: root/kvm
diff options
context:
space:
mode:
authorAsias He <asias.hejun@gmail.com>2010-06-01 22:02:34 +0800
committerMarcelo Tosatti <mtosatti@redhat.com>2010-06-02 13:40:11 -0300
commit6abb879e3657850de2abe0793432689d0be5f8a8 (patch)
tree70153c29bb39d9f2dfc091140f29577b7f2ec29e /kvm
parent2a3e62cce60e7f4e4a4e7bb2b637eccda328f9c1 (diff)
qemu-kvm tests: make hypercall test runable on 32-bit host
Signed-off-by: Asias He <asias.hejun@gmail.com> Signed-off-by: Marcelo Tosatti <mtosatti@redhat.com>
Diffstat (limited to 'kvm')
-rw-r--r--kvm/test/config-x86-common.mak5
-rw-r--r--kvm/test/config-x86_64.mak3
2 files changed, 4 insertions, 4 deletions
diff --git a/kvm/test/config-x86-common.mak b/kvm/test/config-x86-common.mak
index 9084e2df7..38dbf5a8b 100644
--- a/kvm/test/config-x86-common.mak
+++ b/kvm/test/config-x86-common.mak
@@ -24,7 +24,8 @@ FLATLIBS = lib/libcflat.a $(libgcc)
tests-common = $(TEST_DIR)/vmexit.flat $(TEST_DIR)/tsc.flat \
$(TEST_DIR)/smptest.flat $(TEST_DIR)/port80.flat \
- $(TEST_DIR)/realmode.flat $(TEST_DIR)/msr.flat
+ $(TEST_DIR)/realmode.flat $(TEST_DIR)/msr.flat \
+ $(TEST_DIR)/hypercall.flat
test_cases: $(tests-common) $(tests)
@@ -32,7 +33,7 @@ $(TEST_DIR)/%.o: CFLAGS += -std=gnu99 -ffreestanding -I lib -I lib/x86
$(TEST_DIR)/access.flat: $(cstart.o) $(TEST_DIR)/access.o $(TEST_DIR)/print.o
-$(TEST_DIR)/hypercall.flat: $(cstart.o) $(TEST_DIR)/hypercall.o $(TEST_DIR)/print.o
+$(TEST_DIR)/hypercall.flat: $(cstart.o) $(TEST_DIR)/hypercall.o
$(TEST_DIR)/sieve.flat: $(cstart.o) $(TEST_DIR)/sieve.o \
$(TEST_DIR)/print.o $(TEST_DIR)/vm.o
diff --git a/kvm/test/config-x86_64.mak b/kvm/test/config-x86_64.mak
index b898ece99..cc7d7d748 100644
--- a/kvm/test/config-x86_64.mak
+++ b/kvm/test/config-x86_64.mak
@@ -5,7 +5,6 @@ ldarch = elf64-x86-64
CFLAGS += -D__x86_64__
tests = $(TEST_DIR)/access.flat $(TEST_DIR)/sieve.flat \
- $(TEST_DIR)/emulator.flat $(TEST_DIR)/hypercall.flat \
- $(TEST_DIR)/apic.flat
+ $(TEST_DIR)/emulator.flat $(TEST_DIR)/apic.flat
include config-x86-common.mak