Codebase list filtergen / HEAD t / t_26_negation
HEAD

Tree @HEAD (Download .tar.gz)

t_26_negation @HEADraw · history · blame

#!/bin/sh -x

TEST="that parsing negated specfiers works"
DATA=parser11

testdir=`dirname $0`
. $testdir/testlib

./parse < $testdir/data/${DATA}.in > $work/out 2>&1
if test $? -ne 0 ; then no_result ; fi

compare $testdir/data/${DATA}.out $work/out

# got this far?
pass