From patchwork Sun Oct 11 09:01:03 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Johannes Berg X-Patchwork-Id: 1380273 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=none (no SPF record) smtp.mailfrom=lists.infradead.org (client-ip=2001:8b0:10b:1231::1; helo=merlin.infradead.org; envelope-from=hostap-bounces+incoming=patchwork.ozlabs.org@lists.infradead.org; receiver=) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=sipsolutions.net Authentication-Results: ozlabs.org; dkim=pass (2048-bit key; secure) header.d=lists.infradead.org header.i=@lists.infradead.org header.a=rsa-sha256 header.s=merlin.20170209 header.b=rOG1I3z6; dkim-atps=neutral Received: from merlin.infradead.org (merlin.infradead.org [IPv6:2001:8b0:10b:1231::1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 4C8G6d0nbsz9sSG for ; Sun, 11 Oct 2020 20:02:44 +1100 (AEDT) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=merlin.20170209; h=Sender:Content-Transfer-Encoding: Content-Type:Cc:List-Subscribe:List-Help:List-Post:List-Archive: List-Unsubscribe:List-Id:MIME-Version:Message-Id:Date:Subject:To:From: Reply-To:Content-ID:Content-Description:Resent-Date:Resent-From:Resent-Sender :Resent-To:Resent-Cc:Resent-Message-ID:In-Reply-To:References:List-Owner; bh=RHWh0maw5WN8Do+lOcUhpfPup7Z60y38yMa5PYucIRQ=; b=rOG1I3z6HfD8iC1neHRQaX9atE fhuNFgu6hkjW/wOm1whGxI3TywZZ94UTcfTcRhc/zpLTngNb3R7jMaFuUhsXACnWsp/O3fpVzYpN5 KaKPRBuns3LlXZZ4a+AsV0t5Y3wkHghzyWYqnZcZuPVycE5Cq5od4OsN7BvzvYYG5dPvuZ8djBvP7 251e26JBtOUo7JSNF0JDQ7lbCgotAIIXEmr5urZQpIlU+MOFHqFEwyjDXfKzT5XYV43GAAf0oFB3h /aYFOoXiiIKXGTiVwOZ7hxcyQFK+CumBvqzoLCfjStmT1B91gaPL++qIn5PUKduhpEiQzDSNNaW+z B7acjfSQ==; Received: from localhost ([::1] helo=merlin.infradead.org) by merlin.infradead.org with esmtp (Exim 4.92.3 #3 (Red Hat Linux)) id 1kRXEH-00011k-SL; Sun, 11 Oct 2020 09:01:21 +0000 Received: from s3.sipsolutions.net ([2a01:4f8:191:4433::2] helo=sipsolutions.net) by merlin.infradead.org with esmtps (Exim 4.92.3 #3 (Red Hat Linux)) id 1kRXEE-00010x-01 for hostap@lists.infradead.org; Sun, 11 Oct 2020 09:01:19 +0000 Received: by sipsolutions.net with esmtpsa (TLS1.3:ECDHE_X25519__RSA_PSS_RSAE_SHA256__AES_256_GCM:256) (Exim 4.94) (envelope-from ) id 1kRXE7-003PAo-Fe; Sun, 11 Oct 2020 11:01:11 +0200 From: Johannes Berg To: hostap@lists.infradead.org Subject: [PATCH] tests: build.sh: remove 'make clean' steps Date: Sun, 11 Oct 2020 11:01:03 +0200 Message-Id: <1602406863-Ic513dda4ee30ff4c130f4a11d6df40691f35377f@changeid> X-Mailer: git-send-email 2.26.2 MIME-Version: 1.0 X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20201011_050118_114670_D5543DA2 X-CRM114-Status: UNSURE ( 9.24 ) X-CRM114-Notice: Please train this message. X-Spam-Score: 0.4 (/) X-Spam-Report: SpamAssassin version 3.4.4 on merlin.infradead.org summary: Content analysis details: (0.4 points) pts rule name description ---- ---------------------- -------------------------------------------------- 0.0 SPF_NONE SPF: sender does not publish an SPF Record 0.0 SPF_HELO_NONE SPF: HELO does not publish an SPF Record 0.4 KHOP_HELO_FCRDNS Relay HELO differs from its IP's reverse DNS X-BeenThere: hostap@lists.infradead.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Johannes Berg Sender: "Hostap" Errors-To: hostap-bounces+incoming=patchwork.ozlabs.org@lists.infradead.org From: Johannes Berg Since the build artifacts are now landing in distinct directories, we don't need to 'make clean' and save some rebuild time. Signed-off-by: Johannes Berg --- tests/hwsim/build.sh | 5 ----- 1 file changed, 5 deletions(-) diff --git a/tests/hwsim/build.sh b/tests/hwsim/build.sh index 165d808fd4a4..d8a78d705ab3 100755 --- a/tests/hwsim/build.sh +++ b/tests/hwsim/build.sh @@ -28,17 +28,14 @@ done echo "Building TNC testing tools" cd tnc -make clean > /dev/null make QUIET=1 -j8 echo "Building wlantest" cd ../../../wlantest -make clean > /dev/null make QUIET=1 -j8 > /dev/null echo "Building hs20-osu-client" cd ../hs20/client/ -make clean > /dev/null 2>&1 make QUIET=1 CONFIG_NO_BROWSER=1 echo "Building hostapd" @@ -55,7 +52,6 @@ if [ $use_lcov -eq 1 ]; then fi fi -make clean > /dev/null make QUIET=1 -j8 hostapd hostapd_cli hlr_auc_gw echo "Building wpa_supplicant" @@ -72,7 +68,6 @@ if [ $use_lcov -eq 1 ]; then fi fi -make clean > /dev/null if [ -z $FIPSLD_CC ]; then export FIPSLD_CC=gcc fi