diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2017-09-19 16:18:42 +0200 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2017-09-19 16:19:39 +0200 |
commit | 9ee24e98d31f1eb2fbd63f911d68f76ccec531a9 (patch) | |
tree | 2813fd58bebe6dc3da8c11466cacfdee64c2837d /tests/Makefile.include | |
parent | 288cb9490ba13e0572e44a67df8c9c2f703c7847 (diff) | |
download | qemu-9ee24e98d31f1eb2fbd63f911d68f76ccec531a9.zip qemu-9ee24e98d31f1eb2fbd63f911d68f76ccec531a9.tar.gz qemu-9ee24e98d31f1eb2fbd63f911d68f76ccec531a9.tar.bz2 |
ptimer-test: do not link to libqemustub.a/libqemuutil.a
This test provides its own mocks, so do not use the "standard"
stubs in libqemustub.a or the event loop implementation in
libqemuutil.a.
This is required on OS X, which otherwise brings in qemu-timer.o,
async.o and main-loop.o from libqemuutil.a.
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'tests/Makefile.include')
-rw-r--r-- | tests/Makefile.include | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/Makefile.include b/tests/Makefile.include index 59e027f..1943154 100644 --- a/tests/Makefile.include +++ b/tests/Makefile.include @@ -618,7 +618,7 @@ tests/test-vmstate$(EXESUF): tests/test-vmstate.o \ tests/test-timed-average$(EXESUF): tests/test-timed-average.o $(test-util-obj-y) tests/test-base64$(EXESUF): tests/test-base64.o \ libqemuutil.a libqemustub.a -tests/ptimer-test$(EXESUF): tests/ptimer-test.o tests/ptimer-test-stubs.o hw/core/ptimer.o libqemustub.a +tests/ptimer-test$(EXESUF): tests/ptimer-test.o tests/ptimer-test-stubs.o hw/core/ptimer.o tests/test-logging$(EXESUF): tests/test-logging.o $(test-util-obj-y) |