From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:33348) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aZIFK-0008IM-1h for qemu-devel@nongnu.org; Fri, 26 Feb 2016 08:15:51 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aZIFE-0004DM-Pt for qemu-devel@nongnu.org; Fri, 26 Feb 2016 08:15:49 -0500 Received: from mail-wm0-x22f.google.com ([2a00:1450:400c:c09::22f]:35040) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aZIFD-0004D5-Sx for qemu-devel@nongnu.org; Fri, 26 Feb 2016 08:15:44 -0500 Received: by mail-wm0-x22f.google.com with SMTP id c200so71910654wme.0 for ; Fri, 26 Feb 2016 05:15:43 -0800 (PST) From: =?UTF-8?q?Alex=20Benn=C3=A9e?= Date: Fri, 26 Feb 2016 13:15:23 +0000 Message-Id: <1456492533-17171-2-git-send-email-alex.bennee@linaro.org> In-Reply-To: <1456492533-17171-1-git-send-email-alex.bennee@linaro.org> References: <1456492533-17171-1-git-send-email-alex.bennee@linaro.org> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Subject: [Qemu-devel] [RFC 01/11] config/config-arm-common: build-up tests-common target List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: mttcg@listserver.greensocs.com, mark.burton@greensocs.com, fred.konrad@greensocs.com, a.rigo@virtualopensystems.com Cc: peter.maydell@linaro.org, drjones@redhat.com, a.spyridakis@virtualopensystems.com, claudio.fontana@huawei.com, qemu-devel@nongnu.org, will.deacon@arm.com, crosthwaitepeter@gmail.com, pbonzini@redhat.com, =?UTF-8?q?Alex=20Benn=C3=A9e?= , aurelien@aurel32.net, rth@twiddle.net This is a source of needless conflicts when adding new tests and re-basing. Let's just build up the lists of tests by hand. Signed-off-by: Alex Bennée --- config/config-arm-common.mak | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/config/config-arm-common.mak b/config/config-arm-common.mak index 698555d..e037507 100644 --- a/config/config-arm-common.mak +++ b/config/config-arm-common.mak @@ -9,9 +9,8 @@ ifeq ($(LOADADDR),) LOADADDR = 0x40000000 endif -tests-common = \ - $(TEST_DIR)/selftest.flat \ - $(TEST_DIR)/spinlock-test.flat +tests-common = $(TEST_DIR)/selftest.flat +tests-common += $(TEST_DIR)/spinlock-test.flat all: test_cases -- 2.7.1