Home | History | Annotate | Download | only in tests
      1 #! /bin/sh
      2 
      3 dir=`dirname $0`
      4 
      5 $dir/../../tests/filter_stderr_basic  |
      6 
      7 # Remove lines that don't start with #
      8 sed '/^[^#]/d' |
      9 
     10 # Remove all blank lines
     11 sed '/^$/d'
     12 
     13 
     14