mirror of
https://github.com/boostorg/spirit.git
synced 2026-01-19 04:42:11 +00:00
5 lines
198 B
Bash
5 lines
198 B
Bash
#!/bin/sh
|
|
SRCDIR=`dirname $0`
|
|
./test_re2c_lexer $SRCDIR/lextest.in | diff - $SRCDIR/lextest.re2c.output || exit 1
|
|
./test_slex_lexer $SRCDIR/lextest.in | diff - $SRCDIR/lextest.slex.output || exit 1
|