From patchwork Fri Mar 13 14:15:46 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Thomas Wood X-Patchwork-Id: 6005311 Return-Path: X-Original-To: patchwork-intel-gfx@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork2.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.136]) by patchwork2.web.kernel.org (Postfix) with ESMTP id BF63FBF90F for ; Fri, 13 Mar 2015 14:15:59 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 5173C20274 for ; Fri, 13 Mar 2015 14:15:54 +0000 (UTC) Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) by mail.kernel.org (Postfix) with ESMTP id B848520266 for ; Fri, 13 Mar 2015 14:15:51 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 0F7296E33B; Fri, 13 Mar 2015 07:15:51 -0700 (PDT) X-Original-To: intel-gfx@lists.freedesktop.org Delivered-To: intel-gfx@lists.freedesktop.org Received: from mail-we0-f173.google.com (mail-we0-f173.google.com [74.125.82.173]) by gabe.freedesktop.org (Postfix) with ESMTP id BE6D86E33B for ; Fri, 13 Mar 2015 07:15:49 -0700 (PDT) Received: by wevl61 with SMTP id l61so23560925wev.10 for ; Fri, 13 Mar 2015 07:15:48 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:subject:date:message-id; bh=ziCxND3boqNtr+e1ISd6p7+RXeAWkBK6Pzv8h8wYKig=; b=PdTU1cCqliLXsQqrtdAiA2BW6Zi82gOJUtUKJeBJ5MTLSq707k00kV6tRnqekRI13B nFQEsj32ycyx4TU83jX8YCumsICIE8nLppcIgYk+PE1SiXFyioFbO7o11o5j5VRUa57N Bjnr10FHj3of+Ip/pnnFVmnTnHLUr+2f6Wb1tP4xQqXUhNTpP4DekYgqHo0M/KfDLMJG t74AsOqPyLYyhEhFkVUcJPfsq4+E45XKQLRwKZ7eQzRc717Lhf0DpgqulQaYy3asUtty yViPCUltW1J5zoSzXiSkFcoYdbX8a9vyuXg9nEO618Wyrtqm4usS3RT1elg8+Dojb1wW n1Gg== X-Gm-Message-State: ALoCoQluZxfdd4Z7bYWjvdEiE2V5OovIeu6mCmI4vxSlJKf73KGUH56yJEb1xw0+7IGZFJu8zmRO X-Received: by 10.180.106.68 with SMTP id gs4mr36603046wib.39.1426256148683; Fri, 13 Mar 2015 07:15:48 -0700 (PDT) Received: from pistachio.icx.intel.com ([83.217.123.106]) by mx.google.com with ESMTPSA id bd3sm2968725wib.17.2015.03.13.07.15.47 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Fri, 13 Mar 2015 07:15:47 -0700 (PDT) From: Thomas Wood To: intel-gfx@lists.freedesktop.org Date: Fri, 13 Mar 2015 14:15:46 +0000 Message-Id: <1426256146-8902-1-git-send-email-thomas.wood@intel.com> X-Mailer: git-send-email 2.1.0 Subject: [Intel-gfx] [PATCH i-g-t] tests: create a single combined test list X-BeenThere: intel-gfx@lists.freedesktop.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Intel graphics driver community testing & development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: intel-gfx-bounces@lists.freedesktop.org Sender: "Intel-gfx" X-Spam-Status: No, score=-4.2 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_MED, T_RP_MATCHES_RCVD, UNPARSEABLE_RELAY autolearn=unavailable version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP All tests now respond in a consistent way such that separate lists for tests with and without subtests are no longer necessary. Signed-off-by: Thomas Wood --- tests/Makefile.am | 23 ++++------------------- 1 file changed, 4 insertions(+), 19 deletions(-) diff --git a/tests/Makefile.am b/tests/Makefile.am index 5efc8d8..d808973 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -5,32 +5,17 @@ if HAVE_NOUVEAU endif if BUILD_TESTS -all-local: single-tests.txt multi-tests.txt +all-local: test-list.txt -list-single-tests: - @echo TESTLIST - @echo ${single_kernel_tests} - @echo END TESTLIST - -list-multi-tests: - @echo TESTLIST - @echo ${multi_kernel_tests} - @echo END TESTLIST - -single-tests.txt: Makefile.sources - @echo TESTLIST > $@ - @echo ${single_kernel_tests} >> $@ - @echo END TESTLIST >> $@ - -multi-tests.txt: Makefile.sources +test-list.txt: Makefile.sources @echo TESTLIST > $@ - @echo ${multi_kernel_tests} >> $@ + @echo ${single_kernel_tests} ${multi_kernel_tests} >> $@ @echo END TESTLIST >> $@ EXTRA_PROGRAMS = $(TESTS_progs) $(TESTS_progs_M) $(HANG) EXTRA_DIST = $(TESTS_scripts) $(TESTS_scripts_M) $(scripts) $(IMAGES) $(common_files) -CLEANFILES = $(EXTRA_PROGRAMS) single-tests.txt multi-tests.txt +CLEANFILES = $(EXTRA_PROGRAMS) test-list.txt AM_CFLAGS = $(DRM_CFLAGS) $(CWARNFLAGS) \ -I$(srcdir)/.. \