From patchwork Wed Aug 9 19:15:48 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Eder Zulian X-Patchwork-Id: 712259 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 00190C001DE for ; Wed, 9 Aug 2023 19:19:06 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S233525AbjHITTG (ORCPT ); Wed, 9 Aug 2023 15:19:06 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:38478 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S233461AbjHITTA (ORCPT ); Wed, 9 Aug 2023 15:19:00 -0400 Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.129.124]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 85EC13A81 for ; Wed, 9 Aug 2023 12:18:08 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1691608687; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=ZzmSAR0M0OMGX9sJ1SXQmz0oayE/NSriX7Ha0dYRZmg=; b=VcoJW0FuCcotF6B8WNRULcgdgkpF4ShPva7tC7NDAdnOhfzx7DK/etri1MNye97Tr8a7iI 5H41JZC4ltrCzlvP9XY/iKeLIdYsPm6Dr81dYGzY467+UG2JjjMyqAZrGqUseXlXYnAlA1 19CNz6DZkSqJ7b2CgKIAaP79DXI13H4= Received: from mimecast-mx02.redhat.com (mimecast-mx02.redhat.com [66.187.233.88]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id us-mta-631-UBmW5nCmOL2bg1JSfuyswQ-1; Wed, 09 Aug 2023 15:18:06 -0400 X-MC-Unique: UBmW5nCmOL2bg1JSfuyswQ-1 Received: from smtp.corp.redhat.com (int-mx02.intmail.prod.int.rdu2.redhat.com [10.11.54.2]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx02.redhat.com (Postfix) with ESMTPS id 71CBA85651F for ; Wed, 9 Aug 2023 19:18:06 +0000 (UTC) Received: from ezulian.remote.csb (unknown [10.39.192.197]) by smtp.corp.redhat.com (Postfix) with ESMTP id 8A10540BC780; Wed, 9 Aug 2023 19:18:05 +0000 (UTC) From: Eder Zulian To: linux-rt-users@vger.kernel.org Cc: jkacur@redhat.com, williams@redhat.com, ezulian@redhat.com Subject: [PATCH 86/86] rteval: Replace GPL license notice with SPDX tag in unittest.py Date: Wed, 9 Aug 2023 21:15:48 +0200 Message-Id: <20230809191548.359938-87-ezulian@redhat.com> In-Reply-To: <20230809191548.359938-1-ezulian@redhat.com> References: <20230809191548.359938-1-ezulian@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 3.1 on 10.11.54.2 Precedence: bulk List-ID: X-Mailing-List: linux-rt-users@vger.kernel.org Replace GPL boilerplate with SPDX-License-Identifier tag in unittest.py. Signed-off-by: Eder Zulian --- unit-tests/unittest.py | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) mode change 100755 => 100644 unit-tests/unittest.py diff --git a/unit-tests/unittest.py b/unit-tests/unittest.py old mode 100755 new mode 100644 index d4fe31e..a60af16 --- a/unit-tests/unittest.py +++ b/unit-tests/unittest.py @@ -1,16 +1,6 @@ #!/usr/bin/env python3 -# Copyright (c) 2010 Red Hat, Inc. All rights reserved. This copyrighted material -# is made available to anyone wishing to use, modify, copy, or -# redistribute it subject to the terms and conditions of the GNU General -# Public License v.2. -# -# This program is distributed in the hope that it will be useful, but WITHOUT ANY -# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A -# PARTICULAR PURPOSE. See the GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +# SPDX-License-Identifier: GPL-2.0-only +# Copyright (c) 2010 Red Hat, Inc. All rights reserved. # # Author: David Sommerseth #