From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mx1.redhat.com ([209.132.183.28]:57938 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751079AbdHCFxK (ORCPT ); Thu, 3 Aug 2017 01:53:10 -0400 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 mx1.redhat.com (Postfix) with ESMTPS id 2C9B4356C0 for ; Thu, 3 Aug 2017 05:53:10 +0000 (UTC) From: Eryu Guan Subject: [PATCH] fstests: batch update of test file mode Date: Thu, 3 Aug 2017 13:53:04 +0800 Message-Id: <20170803055304.20928-1-eguan@redhat.com> Sender: fstests-owner@vger.kernel.org To: fstests@vger.kernel.org Cc: Eryu Guan List-ID: Some tests don't have x permission set in mode, git complains about file mode change after running tests in fstests git repo dir. So change all such tests to 755 mode. Performed by: find tests ! -perm /111 -name [0-9][0-9][0-9] -exec chmod 755 {} \; Signed-off-by: Eryu Guan --- We've done this several times before, now I've written a local post-applypatch hook that will detect & change the wrong test file permissions and prompt to do 'git commit --amend'. Hope that this is the last commit to do such changes.. Eryu tests/generic/340 | 0 tests/generic/341 | 0 tests/generic/342 | 0 tests/generic/344 | 0 tests/generic/345 | 0 tests/generic/346 | 0 tests/generic/354 | 0 tests/generic/408 | 0 8 files changed, 0 insertions(+), 0 deletions(-) mode change 100644 => 100755 tests/generic/340 mode change 100644 => 100755 tests/generic/341 mode change 100644 => 100755 tests/generic/342 mode change 100644 => 100755 tests/generic/344 mode change 100644 => 100755 tests/generic/345 mode change 100644 => 100755 tests/generic/346 mode change 100644 => 100755 tests/generic/354 mode change 100644 => 100755 tests/generic/408 diff --git a/tests/generic/340 b/tests/generic/340 old mode 100644 new mode 100755 diff --git a/tests/generic/341 b/tests/generic/341 old mode 100644 new mode 100755 diff --git a/tests/generic/342 b/tests/generic/342 old mode 100644 new mode 100755 diff --git a/tests/generic/344 b/tests/generic/344 old mode 100644 new mode 100755 diff --git a/tests/generic/345 b/tests/generic/345 old mode 100644 new mode 100755 diff --git a/tests/generic/346 b/tests/generic/346 old mode 100644 new mode 100755 diff --git a/tests/generic/354 b/tests/generic/354 old mode 100644 new mode 100755 diff --git a/tests/generic/408 b/tests/generic/408 old mode 100644 new mode 100755 -- 2.13.3