From patchwork Sat Nov 30 23:21:53 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Davide Caratti X-Patchwork-Id: 1202768 X-Patchwork-Delegate: matthieu.baerts@tessares.net 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.01.org (client-ip=198.145.21.10; helo=ml01.01.org; envelope-from=mptcp-bounces@lists.01.org; receiver=) Authentication-Results: ozlabs.org; dmarc=fail (p=none dis=none) header.from=redhat.com Authentication-Results: ozlabs.org; dkim=fail reason="signature verification failed" (1024-bit key; unprotected) header.d=redhat.com header.i=@redhat.com header.b="aRUUCfwy"; dkim-atps=neutral Received: from ml01.01.org (ml01.01.org [198.145.21.10]) (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 ozlabs.org (Postfix) with ESMTPS id 47QS853rFPz9sP3 for ; Sun, 1 Dec 2019 10:22:12 +1100 (AEDT) Received: from ml01.01.org (localhost [IPv6:::1]) by ml01.01.org (Postfix) with ESMTP id D5E7510113518; Sat, 30 Nov 2019 15:25:32 -0800 (PST) Received-SPF: Pass (mailfrom) identity=mailfrom; client-ip=207.211.31.120; helo=us-smtp-1.mimecast.com; envelope-from=dcaratti@redhat.com; receiver= Received: from us-smtp-1.mimecast.com (us-smtp-delivery-1.mimecast.com [207.211.31.120]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-SHA384 (256/256 bits)) (No client certificate requested) by ml01.01.org (Postfix) with ESMTPS id D076210113516 for ; Sat, 30 Nov 2019 15:25:31 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1575156127; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding; bh=3Sn9vaGSiexPRzeMez1zZ8SBW8yooXghGSf51lTm5tU=; b=aRUUCfwyZTEjRlkzQAre45J2P23LGZDYCgrNgyJBOlzFgnJJd3G7DMjdVe9y574Dar/R+V Rwv7HwfK8YneGOQzoB8bC02ynuTsL8QxNXhn3xgtwKzeWgX2fE9jB4A/ipHvh9I5Q2cYGI iGUUGGG2Efgv9kYKwov6xiFoGkFzdRw= Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com [209.132.183.4]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-361-FprcZUrgOgmrlvRBlEV6sA-1; Sat, 30 Nov 2019 18:22:04 -0500 Received: from smtp.corp.redhat.com (int-mx03.intmail.prod.int.phx2.redhat.com [10.5.11.13]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id 17E97DB20 for ; Sat, 30 Nov 2019 23:22:03 +0000 (UTC) Received: from new-host-5.redhat.com (ovpn-204-67.brq.redhat.com [10.40.204.67]) by smtp.corp.redhat.com (Postfix) with ESMTP id 77075646D7 for ; Sat, 30 Nov 2019 23:22:02 +0000 (UTC) From: Davide Caratti To: mptcp@lists.01.org Date: Sun, 1 Dec 2019 00:21:53 +0100 Message-Id: MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.13 X-MC-Unique: FprcZUrgOgmrlvRBlEV6sA-1 X-Mimecast-Spam-Score: 0 Message-ID-Hash: NEP7UYKODTIVE6KAUAS5XYIODUAO557C X-Message-ID-Hash: NEP7UYKODTIVE6KAUAS5XYIODUAO557C X-MailFrom: dcaratti@redhat.com 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; suspicious-header X-Mailman-Version: 3.1.1 Precedence: list Subject: [MPTCP] [PATCH] selftests: remove pcap captures with 'make clean' List-Id: Discussions regarding MPTCP upstreaming Archived-At: List-Archive: List-Help: List-Post: List-Subscribe: List-Unsubscribe: use EXTRA_CLEAN variable to ensure that pcap captures are removed with 'make clean' Signed-off-by: Davide Caratti --- Notes: squash-to: "mptcp: add basic kselftest for mptcp" tools/testing/selftests/net/mptcp/Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tools/testing/selftests/net/mptcp/Makefile b/tools/testing/selftests/net/mptcp/Makefile index 0fc5d45055ee..93de52016dde 100644 --- a/tools/testing/selftests/net/mptcp/Makefile +++ b/tools/testing/selftests/net/mptcp/Makefile @@ -8,4 +8,6 @@ TEST_PROGS := mptcp_connect.sh TEST_GEN_FILES = mptcp_connect +EXTRA_CLEAN := *.pcap + include ../../lib.mk