blob: b02753d8d817b9db252d07aec7831fe3427faab8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#! /bin/sh
rxtest=./testregex.libc
rxtest=./testregex.usual
tests="basic.dat categorize.dat nullsubexpr.dat"
tests="$tests rightassoc.dat"
#tests="$tests leftassoc.dat"
tests="$tests forcedassoc.dat"
tests="$tests repetition.dat"
tests="$tests interpretation.dat"
for t in $tests; do
printf "%-20s" "$t"
#$rxtest < data/$t | grep -vE '(NOTE|Research)'
$rxtest < data/$t | tail -n +4 | grep -vE 'haskell|mimi|NOTE'
done
#$rxtest < data/categorize.dat | tail -n +4
|