From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from gandalf.ozlabs.org (mail.ozlabs.org [IPv6:2404:9400:2221:ea00::3]) by passt.top (Postfix) with ESMTPS id 1A0CD5A0272 for ; Thu, 21 Mar 2024 05:57:51 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gibson.dropbear.id.au; s=202312; t=1710997065; bh=mayI2XsD0gDAwfcqQdWdYAV/PodvW1PeDw2PHppj6xw=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=lwLLTXxmkHkv9FQBitN4na92I8n1bSVzq4YDi7H0idloyLF0ros0zMvc+FOnXobpz 2Rebh+TNUQng04lhsyQOgU9WmApd2gkQ2TTFcyK0O7scDRBB6mAvarmYNJmZAkp4Jq vpAwIsXj1KEXkJreeTrLb9SsZNb8EGmCDyDxC+rOf5pLAX6f20CUZrq1zHvxKiMn1f a8AAZ/Pv2YW/CacluASr2ek6DH2AosUHR2ek0OHipVU1We+qQF/G9hlA4mnPwZyGyS 7R7acYJrE+GIvWDhEIktB7F5wasXtx8x83uc0vS5VxZ/cuXpwDB+b7iqcwavIg+3L5 n2w/BvM2lRCEg== Received: by gandalf.ozlabs.org (Postfix, from userid 1007) id 4V0Y9j0YLvz4wxY; Thu, 21 Mar 2024 15:57:45 +1100 (AEDT) From: David Gibson To: Stefano Brivio , passt-dev@passt.top Subject: [PATCH v2 4/5] test: catatonit may not be in $PATH Date: Thu, 21 Mar 2024 15:57:41 +1100 Message-ID: <20240321045742.2267188-5-david@gibson.dropbear.id.au> X-Mailer: git-send-email 2.44.0 In-Reply-To: <20240321045742.2267188-1-david@gibson.dropbear.id.au> References: <20240321045742.2267188-1-david@gibson.dropbear.id.au> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Message-ID-Hash: IXVRSBYWMFV7KBSDBRNX6QDUHVGLXUSS X-Message-ID-Hash: IXVRSBYWMFV7KBSDBRNX6QDUHVGLXUSS X-MailFrom: dgibson@gandalf.ozlabs.org X-Mailman-Rule-Misses: dmarc-mitigation; no-senders; approved; emergency; loop; banned-address; member-moderation; nonmember-moderation; administrivia; implicit-dest; max-recipients; max-size; news-moderation; no-subject; digests; suspicious-header CC: Paul Holzinger , David Gibson X-Mailman-Version: 3.3.8 Precedence: list List-Id: Development discussion and patches for passt Archived-At: Archived-At: List-Archive: List-Archive: List-Help: List-Owner: List-Post: List-Subscribe: List-Unsubscribe: The pasta_podman/bats test script looks for 'catatonit' amongst other tools to be avaiiliable on the host. However, while the podman tests do require catatonit, it doesn't necessarily need to be in the regular path. For example Fedora and RHEL place catatonit in /usr/libexec and podman finds it there fine. Therefore, remove it as an htools dependency. Signed-off-by: David Gibson --- test/pasta_podman/bats | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/pasta_podman/bats b/test/pasta_podman/bats index cb88aa41..46a958a9 100644 --- a/test/pasta_podman/bats +++ b/test/pasta_podman/bats @@ -11,7 +11,7 @@ # Copyright (c) 2022 Red Hat GmbH # Author: Stefano Brivio -htools git make go bats catatonit ip jq socat ./test/podman/bin/podman +htools git make go bats ip jq socat ./test/podman/bin/podman test Podman system test with bats -- 2.44.0