From 4b9816100c704fd8ecfb1a8fa66f86e6284c07cb Mon Sep 17 00:00:00 2001 From: Seth Tisue Date: Tue, 21 Mar 2017 10:35:05 -0700 Subject: remove test/pending directory too it will all stay right there in the Git history to be consulted anytime we want... --- tools/rm-orphan-checkfiles | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tools') diff --git a/tools/rm-orphan-checkfiles b/tools/rm-orphan-checkfiles index ca0a3f2938..5bf95dda0a 100755 --- a/tools/rm-orphan-checkfiles +++ b/tools/rm-orphan-checkfiles @@ -6,13 +6,13 @@ shopt -s nullglob echo "Scanning for orphan check files..." -for f in $(ls -1d test/{files,pending,disabled}/{jvm,neg,pos,run}/*.check); do +for f in $(ls -1d test/files/{jvm,neg,pos,run}/*.check); do base=${f%%.check} [[ -d $base ]] || [[ -f $base.scala ]] || git rm -f $f done echo "Scanning for orphan flags files..." -for f in $(ls -1d test/{files,pending,disabled}/{jvm,neg,pos,run}/*.flags); do +for f in $(ls -1d test/files/{jvm,neg,pos,run}/*.flags); do base=${f%%.flags} [[ -d $base ]] || [[ -f $base.scala ]] || git rm -f $f done -- cgit v1.2.3