tests/Makefile: Remove unused test-obj-y variable
authorThomas Huth <thuth@redhat.com>
Wed, 8 May 2019 07:55:27 +0000 (09:55 +0200)
committerThomas Huth <thuth@redhat.com>
Wed, 8 May 2019 15:45:18 +0000 (17:45 +0200)
I recently noticed that test-obj-y contains a file called
tests/check-block-qtest.o which simply does not belong to any .c
file and thus wondered why this is not causing any trouble. It is
only used to add -Itests to the command line (which refers to the
build directory). However, it is not needed because "-iquote $(@D)"
already sets this up in rules.mak. Thus we can simply remove this
variable.

Reviewed-by: Markus Armbruster <armbru@redhat.com>
Message-Id: <20190508075527.32164-1-thuth@redhat.com>
Signed-off-by: Thomas Huth <thuth@redhat.com>
tests/Makefile.include

index af88ab6f8bed8fc972fa26e8b8cff2032fbf9260..60de085ee1f04b6b3a2b5cf8218d523a41088736 100644 (file)
@@ -482,25 +482,6 @@ GENERATED_FILES += tests/test-qapi-types.h \
        tests/test-qapi-events-sub-sub-module.h \
        tests/test-qapi-introspect.h
 
-test-obj-y = tests/check-qnum.o tests/check-qstring.o tests/check-qdict.o \
-       tests/check-qlist.o tests/check-qnull.o tests/check-qobject.o \
-       tests/check-qjson.o tests/check-qlit.o \
-       tests/check-block-qtest.o \
-       tests/test-coroutine.o tests/test-string-output-visitor.o \
-       tests/test-string-input-visitor.o tests/test-qobject-output-visitor.o \
-       tests/test-clone-visitor.o \
-       tests/test-qobject-input-visitor.o \
-       tests/test-qmp-cmds.o tests/test-visitor-serialization.o \
-       tests/test-x86-cpuid.o tests/test-mul64.o tests/test-int128.o \
-       tests/test-opts-visitor.o tests/test-qmp-event.o \
-       tests/rcutorture.o tests/test-rcu-list.o \
-       tests/test-rcu-simpleq.o \
-       tests/test-rcu-tailq.o \
-       tests/test-qdist.o tests/test-shift128.o \
-       tests/test-qht.o tests/qht-bench.o tests/test-qht-par.o \
-       tests/atomic_add-bench.o tests/atomic64-bench.o
-
-$(test-obj-y): QEMU_INCLUDES += -Itests
 QEMU_CFLAGS += -I$(SRC_PATH)/tests
 
 
This page took 0.023492 seconds and 4 git commands to generate.