swig/Tools/vcfilter
William S Fulton 8cacb46834 execute permissions added
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@10033 626c5289-ae23-0410-ae9c-e8d60b6d4f22
2007-10-24 21:25:39 +00:00

10 lines
441 B
Bash
Executable file

#!/bin/sh
# This is a simple utility for Cygwin/Mingw which is useful when running the SWIG
# test-suite through Visual Studio. If the output from the test-suite is piped
# through this utility, it will filter the junk that the compiler generates.
# Typical usage: make check | vcfilter
# dos2unix needed for ^ and $ to work.
2>&1 dos2unix | grep -v "\.cxx$" | grep -v "\.c$" | grep -v "^ Creating library" | grep -v "^Generating Code"