summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorSeth Tisue <seth@tisue.net>2017-03-21 10:35:05 -0700
committerSeth Tisue <seth@tisue.net>2017-03-21 10:35:05 -0700
commit4b9816100c704fd8ecfb1a8fa66f86e6284c07cb (patch)
tree5f748bbc562da8803513444375659f7cd96496f5 /tools
parent25048bc73741846107c18ed01e0e9f6f07785379 (diff)
downloadscala-4b9816100c704fd8ecfb1a8fa66f86e6284c07cb.tar.gz
scala-4b9816100c704fd8ecfb1a8fa66f86e6284c07cb.tar.bz2
scala-4b9816100c704fd8ecfb1a8fa66f86e6284c07cb.zip
remove test/pending directory too
it will all stay right there in the Git history to be consulted anytime we want...
Diffstat (limited to 'tools')
-rwxr-xr-xtools/rm-orphan-checkfiles4
1 files changed, 2 insertions, 2 deletions
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