]> code.delx.au - gnu-emacs-elpa/blobdiff - packages/loc-changes/make-check-filter.rb
Oops - should have added in branch externals/<pkg>
[gnu-emacs-elpa] / packages / loc-changes / make-check-filter.rb
diff --git a/packages/loc-changes/make-check-filter.rb b/packages/loc-changes/make-check-filter.rb
deleted file mode 100644 (file)
index 88cad14..0000000
+++ /dev/null
@@ -1,25 +0,0 @@
-#!/usr/bin/env ruby
-# Use this to cut out the crud from make check.
-# Use like this:
-#   make check 2>&1  | ruby ../make-check-filter.rb
-# See Makefile.am
-pats = ["^(?:Loading",
-        '(re)?make\[',
-        "Making check in",
-        '\(cd \.\.',
-        "Column ignored",
-        "buffer \\*scratch\\*",
-        "\\*scratch\\*",
-        "make -C",
-        "Test-Unit",
-        "Fontifying",
-        '\s*$',
-        '##[<>]+$'
-       ].join('|') + ')'
-# puts pats
-skip_re = /#{pats}/
-
-while gets()
-  next if $_ =~ skip_re
-  puts $_
-end