From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1709226-garchives=archives.gentoo.org@lists.gentoo.org> Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id C426615813A for <garchives@archives.gentoo.org>; Tue, 14 Jan 2025 04:38:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 53179E082B; Tue, 14 Jan 2025 04:38:27 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 3BEBAE082B for <gentoo-commits@lists.gentoo.org>; Tue, 14 Jan 2025 04:38:27 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 0C6A23409EC for <gentoo-commits@lists.gentoo.org>; Tue, 14 Jan 2025 04:38:26 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8090E2191 for <gentoo-commits@lists.gentoo.org>; Tue, 14 Jan 2025 04:38:22 +0000 (UTC) From: "Mike Gilbert" <floppym@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Gilbert" <floppym@gentoo.org> Message-ID: <1736310657.4d815277d896b365407b24701b7c4ff2a5fe765d.floppym@gentoo> Subject: [gentoo-commits] proj/sandbox:master commit in: /, tests/ X-VCS-Repository: proj/sandbox X-VCS-Files: .gitignore tests/local.mk tests/testsuite.at X-VCS-Directories: tests/ / X-VCS-Committer: floppym X-VCS-Committer-Name: Mike Gilbert X-VCS-Revision: 4d815277d896b365407b24701b7c4ff2a5fe765d X-VCS-Branch: master Date: Tue, 14 Jan 2025 04:38:22 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 0924a165-8db9-4184-b926-419d1b920742 X-Archives-Hash: 3d08fea9f00f733408ad2cb8b8ea7a69 Message-ID: <20250114043822.AYQzAQXuVInHXr2nUoBKSomu4nYkWGGq0CXqbXYtZS0@z> commit: 4d815277d896b365407b24701b7c4ff2a5fe765d Author: Mike Gilbert <floppym <AT> gentoo <DOT> org> AuthorDate: Wed Jan 8 04:30:57 2025 +0000 Commit: Mike Gilbert <floppym <AT> gentoo <DOT> org> CommitDate: Wed Jan 8 04:30:57 2025 +0000 URL: https://gitweb.gentoo.org/proj/sandbox.git/commit/?id=4d815277 tests: rename testsuite.list.at to testsuite.list This avoids a circular make dependency by not matching the *.at wildcard. Signed-off-by: Mike Gilbert <floppym <AT> gentoo.org> .gitignore | 2 +- tests/local.mk | 2 +- tests/testsuite.at | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 7704390..7f6dae9 100644 --- a/.gitignore +++ b/.gitignore @@ -73,5 +73,5 @@ core /tests/package.m4 /tests/testsuite /tests/testsuite.dir/ -/tests/testsuite.list.at +/tests/testsuite.list /tests/testsuite.log diff --git a/tests/local.mk b/tests/local.mk index 4f166cc..73900b6 100644 --- a/tests/local.mk +++ b/tests/local.mk @@ -139,7 +139,7 @@ installcheck-local: %D%/atconfig %D%/atlocal $(TESTSUITE) clean-local: test ! -f '$(TESTSUITE)' || { cd %D% && $(SHELL) '$(ABS_TESTSUITE)' --clean; } -TESTSUITE_LIST = $(top_srcdir)/%D%/testsuite.list.at +TESTSUITE_LIST = $(top_srcdir)/%D%/testsuite.list AUTOTEST = $(AUTOM4TE) --language=autotest $(TESTSUITE): $(AT_FILES) $(TESTSUITE_LIST) @$(MKDIR_P) '$(top_srcdir)/%D%' diff --git a/tests/testsuite.at b/tests/testsuite.at index 2fbe1dc..38032dc 100644 --- a/tests/testsuite.at +++ b/tests/testsuite.at @@ -6,4 +6,4 @@ m4_defun([SB_SECTION],[$1]) m4_include([]SB_SECTION[.at]) ]) -m4_include([testsuite.list.at]) +m4_include([testsuite.list])