Makefile.include (c2b38b277a7882a592f4f2ec955084b2b756daaa) Makefile.include (0c330a734b51c177ab8488932ac3b0c4d63a718a)
1export SRC_PATH
2
3qapi-py = $(SRC_PATH)/scripts/qapi.py $(SRC_PATH)/scripts/ordereddict.py
4
5# Get the list of all supported sysemu targets
6SYSEMU_TARGET_LIST := $(subst -softmmu.mak,,$(notdir \
7 $(wildcard $(SRC_PATH)/default-configs/*-softmmu.mak)))
8

--- 34 unchanged lines hidden (view full) ---

43gcov-files-test-coroutine-y = coroutine-$(CONFIG_COROUTINE_BACKEND).c
44check-unit-y += tests/test-visitor-serialization$(EXESUF)
45check-unit-y += tests/test-iov$(EXESUF)
46gcov-files-test-iov-y = util/iov.c
47check-unit-y += tests/test-aio$(EXESUF)
48gcov-files-test-aio-y = util/async.c util/qemu-timer.o
49gcov-files-test-aio-$(CONFIG_WIN32) += util/aio-win32.c
50gcov-files-test-aio-$(CONFIG_POSIX) += util/aio-posix.c
1export SRC_PATH
2
3qapi-py = $(SRC_PATH)/scripts/qapi.py $(SRC_PATH)/scripts/ordereddict.py
4
5# Get the list of all supported sysemu targets
6SYSEMU_TARGET_LIST := $(subst -softmmu.mak,,$(notdir \
7 $(wildcard $(SRC_PATH)/default-configs/*-softmmu.mak)))
8

--- 34 unchanged lines hidden (view full) ---

43gcov-files-test-coroutine-y = coroutine-$(CONFIG_COROUTINE_BACKEND).c
44check-unit-y += tests/test-visitor-serialization$(EXESUF)
45check-unit-y += tests/test-iov$(EXESUF)
46gcov-files-test-iov-y = util/iov.c
47check-unit-y += tests/test-aio$(EXESUF)
48gcov-files-test-aio-y = util/async.c util/qemu-timer.o
49gcov-files-test-aio-$(CONFIG_WIN32) += util/aio-win32.c
50gcov-files-test-aio-$(CONFIG_POSIX) += util/aio-posix.c
51check-unit-y += tests/test-aio-multithread$(EXESUF)
52gcov-files-test-aio-multithread-y = $(gcov-files-test-aio-y)
53gcov-files-test-aio-multithread-y += util/qemu-coroutine.c tests/iothread.c
51check-unit-y += tests/test-throttle$(EXESUF)
54check-unit-y += tests/test-throttle$(EXESUF)
52gcov-files-test-aio-$(CONFIG_WIN32) = aio-win32.c
53gcov-files-test-aio-$(CONFIG_POSIX) = aio-posix.c
54check-unit-y += tests/test-thread-pool$(EXESUF)
55gcov-files-test-thread-pool-y = thread-pool.c
56gcov-files-test-hbitmap-y = util/hbitmap.c
57check-unit-y += tests/test-hbitmap$(EXESUF)
58gcov-files-test-hbitmap-y = blockjob.c
59check-unit-y += tests/test-blockjob$(EXESUF)
60check-unit-y += tests/test-blockjob-txn$(EXESUF)
61check-unit-y += tests/test-x86-cpuid$(EXESUF)

--- 441 unchanged lines hidden (view full) ---

503# Deps that are common to various different sets of tests below
504test-util-obj-y = $(trace-obj-y) libqemuutil.a libqemustub.a
505test-qom-obj-y = $(qom-obj-y) $(test-util-obj-y)
506test-qapi-obj-y = tests/test-qapi-visit.o tests/test-qapi-types.o \
507 tests/test-qapi-event.o tests/test-qmp-introspect.o \
508 $(test-qom-obj-y)
509test-crypto-obj-y = $(crypto-obj-y) $(test-qom-obj-y)
510test-io-obj-y = $(io-obj-y) $(test-crypto-obj-y)
55check-unit-y += tests/test-thread-pool$(EXESUF)
56gcov-files-test-thread-pool-y = thread-pool.c
57gcov-files-test-hbitmap-y = util/hbitmap.c
58check-unit-y += tests/test-hbitmap$(EXESUF)
59gcov-files-test-hbitmap-y = blockjob.c
60check-unit-y += tests/test-blockjob$(EXESUF)
61check-unit-y += tests/test-blockjob-txn$(EXESUF)
62check-unit-y += tests/test-x86-cpuid$(EXESUF)

--- 441 unchanged lines hidden (view full) ---

504# Deps that are common to various different sets of tests below
505test-util-obj-y = $(trace-obj-y) libqemuutil.a libqemustub.a
506test-qom-obj-y = $(qom-obj-y) $(test-util-obj-y)
507test-qapi-obj-y = tests/test-qapi-visit.o tests/test-qapi-types.o \
508 tests/test-qapi-event.o tests/test-qmp-introspect.o \
509 $(test-qom-obj-y)
510test-crypto-obj-y = $(crypto-obj-y) $(test-qom-obj-y)
511test-io-obj-y = $(io-obj-y) $(test-crypto-obj-y)
511test-block-obj-y = $(block-obj-y) $(test-io-obj-y)
512test-block-obj-y = $(block-obj-y) $(test-io-obj-y) tests/iothread.o
512
513tests/check-qint$(EXESUF): tests/check-qint.o $(test-util-obj-y)
514tests/check-qstring$(EXESUF): tests/check-qstring.o $(test-util-obj-y)
515tests/check-qdict$(EXESUF): tests/check-qdict.o $(test-util-obj-y)
516tests/check-qlist$(EXESUF): tests/check-qlist.o $(test-util-obj-y)
517tests/check-qfloat$(EXESUF): tests/check-qfloat.o $(test-util-obj-y)
518tests/check-qnull$(EXESUF): tests/check-qnull.o $(test-util-obj-y)
519tests/check-qjson$(EXESUF): tests/check-qjson.o $(test-util-obj-y)
520tests/check-qom-interface$(EXESUF): tests/check-qom-interface.o $(test-qom-obj-y)
521tests/check-qom-proplist$(EXESUF): tests/check-qom-proplist.o $(test-qom-obj-y)
522
523tests/test-char$(EXESUF): tests/test-char.o $(test-util-obj-y) $(qtest-obj-y) $(test-io-obj-y) $(chardev-obj-y)
524tests/test-coroutine$(EXESUF): tests/test-coroutine.o $(test-block-obj-y)
525tests/test-aio$(EXESUF): tests/test-aio.o $(test-block-obj-y)
513
514tests/check-qint$(EXESUF): tests/check-qint.o $(test-util-obj-y)
515tests/check-qstring$(EXESUF): tests/check-qstring.o $(test-util-obj-y)
516tests/check-qdict$(EXESUF): tests/check-qdict.o $(test-util-obj-y)
517tests/check-qlist$(EXESUF): tests/check-qlist.o $(test-util-obj-y)
518tests/check-qfloat$(EXESUF): tests/check-qfloat.o $(test-util-obj-y)
519tests/check-qnull$(EXESUF): tests/check-qnull.o $(test-util-obj-y)
520tests/check-qjson$(EXESUF): tests/check-qjson.o $(test-util-obj-y)
521tests/check-qom-interface$(EXESUF): tests/check-qom-interface.o $(test-qom-obj-y)
522tests/check-qom-proplist$(EXESUF): tests/check-qom-proplist.o $(test-qom-obj-y)
523
524tests/test-char$(EXESUF): tests/test-char.o $(test-util-obj-y) $(qtest-obj-y) $(test-io-obj-y) $(chardev-obj-y)
525tests/test-coroutine$(EXESUF): tests/test-coroutine.o $(test-block-obj-y)
526tests/test-aio$(EXESUF): tests/test-aio.o $(test-block-obj-y)
527tests/test-aio-multithread$(EXESUF): tests/test-aio-multithread.o $(test-block-obj-y)
526tests/test-throttle$(EXESUF): tests/test-throttle.o $(test-block-obj-y)
527tests/test-blockjob$(EXESUF): tests/test-blockjob.o $(test-block-obj-y) $(test-util-obj-y)
528tests/test-blockjob-txn$(EXESUF): tests/test-blockjob-txn.o $(test-block-obj-y) $(test-util-obj-y)
529tests/test-thread-pool$(EXESUF): tests/test-thread-pool.o $(test-block-obj-y)
530tests/test-iov$(EXESUF): tests/test-iov.o $(test-util-obj-y)
531tests/test-hbitmap$(EXESUF): tests/test-hbitmap.o $(test-util-obj-y)
532tests/test-x86-cpuid$(EXESUF): tests/test-x86-cpuid.o
533tests/test-xbzrle$(EXESUF): tests/test-xbzrle.o migration/xbzrle.o page_cache.o $(test-util-obj-y)

--- 341 unchanged lines hidden ---
528tests/test-throttle$(EXESUF): tests/test-throttle.o $(test-block-obj-y)
529tests/test-blockjob$(EXESUF): tests/test-blockjob.o $(test-block-obj-y) $(test-util-obj-y)
530tests/test-blockjob-txn$(EXESUF): tests/test-blockjob-txn.o $(test-block-obj-y) $(test-util-obj-y)
531tests/test-thread-pool$(EXESUF): tests/test-thread-pool.o $(test-block-obj-y)
532tests/test-iov$(EXESUF): tests/test-iov.o $(test-util-obj-y)
533tests/test-hbitmap$(EXESUF): tests/test-hbitmap.o $(test-util-obj-y)
534tests/test-x86-cpuid$(EXESUF): tests/test-x86-cpuid.o
535tests/test-xbzrle$(EXESUF): tests/test-xbzrle.o migration/xbzrle.o page_cache.o $(test-util-obj-y)

--- 341 unchanged lines hidden ---