From mboxrd@z Thu Jan 1 00:00:00 1970 Authentication-Results: passt.top; dmarc=none (p=none dis=none) header.from=gibson.dropbear.id.au Authentication-Results: passt.top; dkim=pass (2048-bit key; secure) header.d=gibson.dropbear.id.au header.i=@gibson.dropbear.id.au header.a=rsa-sha256 header.s=202508 header.b=EutzhbuD; dkim-atps=neutral Received: from mail.ozlabs.org (gandalf.ozlabs.org [150.107.74.76]) by passt.top (Postfix) with ESMTPS id E9D285A0624 for ; Thu, 02 Oct 2025 06:50:21 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gibson.dropbear.id.au; s=202508; t=1759380614; bh=GKouqbY+4Hxzf1wWmdpk7NDYC9NLGIRx5sH8GhSwJEU=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=EutzhbuDs4s6gIwgLoG+444LLGh4ReHLugZKj6qrGZMDwTvYGVlUohjjQ3ky6Rd1u l5NmTBHZNGtcVUHZ9FInaJZbVCya0SUehEHxUlzsfj+V6CiHMQkJ714tu/omcj52Wy lCcfP1cp853ldmaEpbDNPBTYgsKZmpwnDGTS3dkPVdkUL3Tu2RvtKHZVyO5UXCXaw2 BwlbjcCcYnpXd4AW0A4sfnACU5CZ3cVnJipWPL9uZG9Sa+ci6py1GeGXToGvv3zCbl ysq6efoHuKm169oDlxi9G1Ok4w/rDghoutw9zdEdotkhQdhDjZ6Emt8JgZaV631PRW bEraq/Sh4I8Ow== Received: by gandalf.ozlabs.org (Postfix, from userid 1007) id 4ccfVZ60yWz4wDV; Thu, 2 Oct 2025 14:50:14 +1000 (AEST) From: David Gibson To: passt-dev@passt.top, Stefano Brivio Subject: [PATCH v2 6/6] test: Don't delete exetool on make clean Date: Thu, 2 Oct 2025 14:50:12 +1000 Message-ID: <20251002045012.4047974-7-david@gibson.dropbear.id.au> X-Mailer: git-send-email 2.51.0 In-Reply-To: <20251002045012.4047974-1-david@gibson.dropbear.id.au> References: <20251002045012.4047974-1-david@gibson.dropbear.id.au> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Message-ID-Hash: T6FHFVX2P2X4CM2ZYB6IPHAZ7AFNYOEZ X-Message-ID-Hash: T6FHFVX2P2X4CM2ZYB6IPHAZ7AFNYOEZ 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: 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: exetool is listed in $(LOCAL_ASSETS), which seems like it makes sense, until you realise that $(LOCAL_ASSETS) are deleted on make clean, and we can't rebuild exetool after deleting it (since it's just part of the exeter tree we download). Move it to $(DOWNLOAD_ASSETS) instead. Signed-off-by: David Gibson --- test/Makefile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/test/Makefile b/test/Makefile index 61ccb075..60fd12a7 100644 --- a/test/Makefile +++ b/test/Makefile @@ -54,15 +54,14 @@ UBUNTU_NEW_IMGS = xenial-server-cloudimg-powerpc-disk1.img \ jammy-server-cloudimg-s390x.img UBUNTU_IMGS = $(UBUNTU_OLD_IMGS) $(UBUNTU_NEW_IMGS) -DOWNLOAD_ASSETS = exeter mbuto podman \ +DOWNLOAD_ASSETS = $(EXETOOL) mbuto podman \ $(DEBIAN_IMGS) $(FEDORA_IMGS) $(OPENSUSE_IMGS) $(UBUNTU_IMGS) TESTDATA_ASSETS = small.bin big.bin medium.bin \ rampstream LOCAL_ASSETS = mbuto.img mbuto.mem.img podman/bin/podman QEMU_EFI.fd \ $(DEBIAN_IMGS:%=prepared-%) $(FEDORA_IMGS:%=prepared-%) \ $(UBUNTU_NEW_IMGS:%=prepared-%) \ - nstool guest-key guest-key.pub $(EXETOOL) \ - $(TESTDATA_ASSETS) + nstool guest-key guest-key.pub $(TESTDATA_ASSETS) ASSETS = $(DOWNLOAD_ASSETS) $(LOCAL_ASSETS) -- 2.51.0