From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-16.4 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,INCLUDES_CR_TRAILER,INCLUDES_PATCH, MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS autolearn=unavailable autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 9E34AC43217 for ; Thu, 2 Sep 2021 23:53:04 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 89BF060F9C for ; Thu, 2 Sep 2021 23:53:04 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1345747AbhIBXyC (ORCPT ); Thu, 2 Sep 2021 19:54:02 -0400 Received: from mail.kernel.org ([198.145.29.99]:59394 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231311AbhIBXyB (ORCPT ); Thu, 2 Sep 2021 19:54:01 -0400 Received: by mail.kernel.org (Postfix) with ESMTPSA id D6C2A61053; Thu, 2 Sep 2021 23:53:01 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1630626782; bh=G/0214a0FH7oreO4gdlFAoKtbUDmmt0eT/23qQKvu5E=; h=Subject:From:To:Cc:Date:In-Reply-To:References:From; b=dOqP0j8bBqHNdSWaZe9iLSx0ahoawguxy3m6GtYgRuo1HbMXhmmfq8hjufdDWJwIZ ohwz3UD0TtS/6DQaHWIS6wDse/oj4rsFnzXosxVQDXFnMtgwqkGGxhUrxjT5dLCo54 0ce+VdegJwp3m6dr2v5tJstsfXVl3EV7uOX/jXKeVPkhnnXbR9r7oiA+ysksQZ4HlA FZzjSTyngcnt62D6e/rh6r6bmlbtTcfhPdNexi3pnNoTxdu7wOZiR5FOzsntF9MBMi m42jBiRNrNFMf/scV/HIoX5Nms2rP4YOqyGEKD7QdYAjHW+8KFlBjxJm5DGgvYCiZp hr1+YwvFHQ68g== Subject: [PATCH 7/8] tools: add missing license tags to my scripts From: "Darrick J. Wong" To: djwong@kernel.org, guaneryu@gmail.com Cc: "Darrick J. Wong" , linux-xfs@vger.kernel.org, fstests@vger.kernel.org, guan@eryu.me Date: Thu, 02 Sep 2021 16:53:01 -0700 Message-ID: <163062678156.1579659.15593490978411091202.stgit@magnolia> In-Reply-To: <163062674313.1579659.11141504872576317846.stgit@magnolia> References: <163062674313.1579659.11141504872576317846.stgit@magnolia> User-Agent: StGit/0.19 MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit Precedence: bulk List-ID: X-Mailing-List: fstests@vger.kernel.org From: Darrick J. Wong I forgot to add spdx license tags and copyright statements to some of the tools that I've contributed to fstests. Fix this to be explicit. Signed-off-by: Darrick J. Wong Signed-off-by: Darrick J. Wong --- tools/mkgroupfile | 4 +++- tools/mvtest | 5 ++++- tools/nextid | 4 +++- 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/tools/mkgroupfile b/tools/mkgroupfile index 0681e5d2..f96c329b 100755 --- a/tools/mkgroupfile +++ b/tools/mkgroupfile @@ -1,5 +1,7 @@ #!/bin/bash - +# SPDX-License-Identifier: GPL-2.0 +# Copyright (c) 2021 Oracle. All Rights Reserved. +# # Generate a group file from the _begin_fstest call in each test. if [ "$1" = "--help" ]; then diff --git a/tools/mvtest b/tools/mvtest index 5088b45f..99b15414 100755 --- a/tools/mvtest +++ b/tools/mvtest @@ -1,6 +1,9 @@ #!/bin/sh +# SPDX-License-Identifier: GPL-2.0 +# Copyright (c) 2015 Oracle. All Rights Reserved. +# +# Move a test and update the golden output file. -# Renumber a test dir="$(dirname "$0")" if [ -z "$1" ] || [ "$1" = "--help" ]; then diff --git a/tools/nextid b/tools/nextid index 9507de29..9e31718c 100755 --- a/tools/nextid +++ b/tools/nextid @@ -1,5 +1,7 @@ #!/bin/bash - +# SPDX-License-Identifier: GPL-2.0 +# Copyright (c) 2015 Oracle. All Rights Reserved. +# # Compute the next available test id in a given test directory. if [ $# != 1 ] || [ "$1" = "--help" ] || [ ! -d "tests/$1/" ]; then