From nobody Tue May 7 10:38:48 2024 Delivered-To: importer@patchew.org Received-SPF: temperror (zoho.com: Error in retrieving data from DNS) client-ip=209.51.188.17; envelope-from=qemu-devel-bounces+importer=patchew.org@nongnu.org; helo=lists.gnu.org; Authentication-Results: mx.zohomail.com; spf=temperror (zoho.com: Error in retrieving data from DNS) smtp.mailfrom=qemu-devel-bounces+importer=patchew.org@nongnu.org; dmarc=fail(p=none dis=none) header.from=redhat.com ARC-Seal: i=1; a=rsa-sha256; t=1557119976; cv=none; d=zoho.com; s=zohoarc; b=fIZbZXZzZjT1D4hbsGlTTP0S338ZN7WZKb+K7rs9u6Kpce1G5V+On/zc4BcYnvJSHizF/fAQgxzQ564/36BB4y6+Sdasr7SpJxN5Q7dgj8NBAcmVwFmpIRzsj/8f2afAHy8mDWrCnnN8L1IW7ArOYkEirf4L4s/oU7NCdI+THto= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zoho.com; s=zohoarc; t=1557119976; h=Content-Transfer-Encoding:Cc:Date:From:List-Subscribe:List-Post:List-Id:List-Archive:List-Help:List-Unsubscribe:MIME-Version:Message-ID:Sender:Subject:To:ARC-Authentication-Results; bh=aKpFzm7kvNBCtoTJm+aCPPBZtB+kJhgjj134us7MBs8=; b=ZU9NzF3LteQ+wl1aqzljUOcjSxfhtQ9yZdHNRKP/RN2WzlZml2sss5T6mh/bO3fR1+71GKvTU4bq1zfe6lHLdiHDxo6WJnQhWEXx8yHu8lf4vO9QZntr1Z5qDNZUMtUvuyuhvW0aiEfOMXVYbqT4vZo3xDdHZc9vbojvJA6kD40= ARC-Authentication-Results: i=1; mx.zoho.com; spf=temperror (zoho.com: Error in retrieving data from DNS) smtp.mailfrom=qemu-devel-bounces+importer=patchew.org@nongnu.org; dmarc=fail header.from= (p=none dis=none) header.from= Return-Path: Received: from lists.gnu.org (209.51.188.17 [209.51.188.17]) by mx.zohomail.com with SMTPS id 1557119976851578.8031252654301; Sun, 5 May 2019 22:19:36 -0700 (PDT) Received: from localhost ([127.0.0.1]:50567 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hNW25-0004TL-EI for importer@patchew.org; Mon, 06 May 2019 01:19:21 -0400 Received: from eggs.gnu.org ([209.51.188.92]:46779) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hNW17-00047T-Po for qemu-devel@nongnu.org; Mon, 06 May 2019 01:18:22 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hNW16-0000lk-S8 for qemu-devel@nongnu.org; Mon, 06 May 2019 01:18:21 -0400 Received: from mx1.redhat.com ([209.132.183.28]:37034) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1hNW16-0000kg-Mx; Mon, 06 May 2019 01:18:20 -0400 Received: from smtp.corp.redhat.com (int-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.12]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 221343082E57; Mon, 6 May 2019 05:18:19 +0000 (UTC) Received: from thuth.com (ovpn-116-74.ams2.redhat.com [10.36.116.74]) by smtp.corp.redhat.com (Postfix) with ESMTP id B357860C44; Mon, 6 May 2019 05:18:14 +0000 (UTC) From: Thomas Huth To: qemu-devel@nongnu.org Date: Mon, 6 May 2019 07:18:10 +0200 Message-Id: <20190506051810.16493-1-thuth@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.12 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.46]); Mon, 06 May 2019 05:18:19 +0000 (UTC) Content-Transfer-Encoding: quoted-printable X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 209.132.183.28 Subject: [Qemu-devel] [PATCH] tests/Makefile: Remove unused test-obj-y variable X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: qemu-trivial@nongnu.org, Paolo Bonzini , =?UTF-8?q?Philippe=20Mathieu-Daud=C3=A9?= , Markus Armbruster Errors-To: qemu-devel-bounces+importer=patchew.org@nongnu.org Sender: "Qemu-devel" Content-Type: text/plain; charset="utf-8" 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. Well, if I get the Makefile magic right, test-obj-y is not really used for anything - and "make check" still works fine if we simply remove it. Signed-off-by: Thomas Huth --- tests/Makefile.include | 19 ------------------- 1 file changed, 19 deletions(-) diff --git a/tests/Makefile.include b/tests/Makefile.include index 7c8b9c84b2..dfc4b7746f 100644 --- a/tests/Makefile.include +++ b/tests/Makefile.include @@ -482,25 +482,6 @@ GENERATED_FILES +=3D tests/test-qapi-types.h \ tests/test-qapi-events-sub-sub-module.h \ tests/test-qapi-introspect.h =20 -test-obj-y =3D 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 +=3D -Itests QEMU_CFLAGS +=3D -I$(SRC_PATH)/tests =20 =20 --=20 2.21.0