mirror of https://github.com/xemu-project/xemu.git
tests: Add tests for the ARM MPTimer
ARM MPTimer is a per-CPU core timer, essential part of the ARM Cortex-A9 MPCore. Add QTests for it. Signed-off-by: Dmitry Osipenko <digetx@gmail.com> Message-id: 1c9a2f1c80f87e935b4a28919457c81b6b2256e9.1475421224.git.digetx@gmail.com Reviewed-by: Peter Maydell <peter.maydell@linaro.org> Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
This commit is contained in:
parent
226fb5aaff
commit
882fac3729
|
@ -303,6 +303,8 @@ check-qtest-arm-y += tests/m25p80-test$(EXESUF)
|
||||||
gcov-files-arm-y += hw/misc/tmp105.c
|
gcov-files-arm-y += hw/misc/tmp105.c
|
||||||
check-qtest-arm-y += tests/virtio-blk-test$(EXESUF)
|
check-qtest-arm-y += tests/virtio-blk-test$(EXESUF)
|
||||||
gcov-files-arm-y += arm-softmmu/hw/block/virtio-blk.c
|
gcov-files-arm-y += arm-softmmu/hw/block/virtio-blk.c
|
||||||
|
check-qtest-arm-y += tests/test-arm-mptimer$(EXESUF)
|
||||||
|
gcov-files-arm-y += hw/timer/arm_mptimer.c
|
||||||
|
|
||||||
check-qtest-microblazeel-y = $(check-qtest-microblaze-y)
|
check-qtest-microblazeel-y = $(check-qtest-microblaze-y)
|
||||||
|
|
||||||
|
@ -684,6 +686,7 @@ tests/test-x86-cpuid-compat$(EXESUF): tests/test-x86-cpuid-compat.o $(qtest-obj-
|
||||||
tests/ivshmem-test$(EXESUF): tests/ivshmem-test.o contrib/ivshmem-server/ivshmem-server.o $(libqos-pc-obj-y)
|
tests/ivshmem-test$(EXESUF): tests/ivshmem-test.o contrib/ivshmem-server/ivshmem-server.o $(libqos-pc-obj-y)
|
||||||
tests/vhost-user-bridge$(EXESUF): tests/vhost-user-bridge.o
|
tests/vhost-user-bridge$(EXESUF): tests/vhost-user-bridge.o
|
||||||
tests/test-uuid$(EXESUF): tests/test-uuid.o $(test-util-obj-y)
|
tests/test-uuid$(EXESUF): tests/test-uuid.o $(test-util-obj-y)
|
||||||
|
tests/test-arm-mptimer$(EXESUF): tests/test-arm-mptimer.o
|
||||||
|
|
||||||
tests/migration/stress$(EXESUF): tests/migration/stress.o
|
tests/migration/stress$(EXESUF): tests/migration/stress.o
|
||||||
$(call quiet-command, $(LINKPROG) -static -O3 $(PTHREAD_LIB) -o $@ $< ,"LINK","$(TARGET_DIR)$@")
|
$(call quiet-command, $(LINKPROG) -static -O3 $(PTHREAD_LIB) -o $@ $< ,"LINK","$(TARGET_DIR)$@")
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue