From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id EB1E9A0A02 for ; Fri, 16 Apr 2021 20:54:41 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id C5310161D83; Fri, 16 Apr 2021 20:54:41 +0200 (CEST) Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.133.124]) by mails.dpdk.org (Postfix) with ESMTP id A06FA161D76 for ; Fri, 16 Apr 2021 20:54:39 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1618599279; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=ZE1NdX/hI9LX7yX5d213rW51nUILwSmkxov8ym+63ws=; b=JiW28yLpqpTFYK2f9IoPRih7xLovv8gmZAxoK3WfAS/jymuDCTiZhZUzI3e6+EGdxqwLv0 eIa+tHEDWAhLsFm0FlP6FjSpDSoxK4mhOeYK1RPZX4109qvRVTYLAWBoSlr79RCOqd0ebT Vw9WeUiPp1loNKLp94S8q+cxBAUirdk= 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-214-ewpx442TPVqBiLtI_eDXXw-1; Fri, 16 Apr 2021 14:54:36 -0400 X-MC-Unique: ewpx442TPVqBiLtI_eDXXw-1 Received: from smtp.corp.redhat.com (int-mx06.intmail.prod.int.phx2.redhat.com [10.5.11.16]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id DD8A2107ACCA; Fri, 16 Apr 2021 18:54:35 +0000 (UTC) Received: from dhcp-25.97.bos.redhat.com (ovpn-115-147.rdu2.redhat.com [10.10.115.147]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 501B35C266; Fri, 16 Apr 2021 18:54:35 +0000 (UTC) From: Aaron Conole To: ohilyard@iol.unh.edu Cc: ci@dpdk.org References: <20210415215429.80987-1-ohilyard@iol.unh.edu> Date: Fri, 16 Apr 2021 14:54:34 -0400 In-Reply-To: <20210415215429.80987-1-ohilyard@iol.unh.edu> (ohilyard@iol.unh.edu's message of "Thu, 15 Apr 2021 17:54:29 -0400") Message-ID: User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.3 (gnu/linux) MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.16 Authentication-Results: relay.mimecast.com; auth=pass smtp.auth=CUSA124A263 smtp.mailfrom=aconole@redhat.com X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain Subject: Re: [dpdk-ci] [PATCH V2] patch parsing: added library for parsing patch files X-BeenThere: ci@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK CI discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: ci-bounces@dpdk.org Sender: "ci" ohilyard@iol.unh.edu writes: > From: Owen Hilyard > > Due to the number of edge cases, there were difficulties doing the > parsing using pattern matching, so a dedicated library, whatthepatch, > is now used for parsing the patches to ensure correctness. > > also added the default behavior that if no tags are given, > create_new_execution_file_from_tags.py will act as though all possible > tags were given. this is to allow patches where no tags could be found > to still have test coverage. > > signed-off-by: owen hilyard > --- Thanks, applied.