From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1630860-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 (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id E77251581D3 for <garchives@archives.gentoo.org>; Tue, 14 May 2024 00:15:41 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AA3E3E2AB0; Tue, 14 May 2024 00:15:40 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (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 334C0E2AB0 for <gentoo-commits@lists.gentoo.org>; Tue, 14 May 2024 00:15:40 +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 4F1F233BF41 for <gentoo-commits@lists.gentoo.org>; Tue, 14 May 2024 00:15:39 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DD6AB15F8 for <gentoo-commits@lists.gentoo.org>; Tue, 14 May 2024 00:15:37 +0000 (UTC) From: "Sam James" <sam@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, "Sam James" <sam@gentoo.org> Message-ID: <1715645724.12d78db029707bc459f8ddded827dc46078fb8ad.sam@gentoo> Subject: [gentoo-commits] proj/gentoo-functions:master commit in: / X-VCS-Repository: proj/gentoo-functions X-VCS-Files: meson.build X-VCS-Directories: / X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 12d78db029707bc459f8ddded827dc46078fb8ad X-VCS-Branch: master Date: Tue, 14 May 2024 00:15:37 +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: ad027e7a-21f2-4cf3-a070-c13b536ff44f X-Archives-Hash: cf639a5d66ebda6d5f6640ffaab44223 commit: 12d78db029707bc459f8ddded827dc46078fb8ad Author: Sam James <sam <AT> gentoo <DOT> org> AuthorDate: Tue May 14 00:15:24 2024 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Tue May 14 00:15:24 2024 +0000 URL: https://gitweb.gentoo.org/proj/gentoo-functions.git/commit/?id=12d78db0 meson.build: fix tests Fixes: ea4fb2a1e34900635d0db7bd1d8e5e1bea06ced0 Signed-off-by: Sam James <sam <AT> gentoo.org> meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 05dba85..b89d1be 100644 --- a/meson.build +++ b/meson.build @@ -29,7 +29,7 @@ do_tests = get_option('tests') if do_tests test( 'test-functions', files('test-functions'), - workdir : meson.current_build_dir(), + workdir : meson.current_source_dir(), protocol : 'tap', verbose : true )