lexilla/scripts/RunTest.sh
2022-03-25 14:27:09 +11:00

13 lines
184 B
Bash

# Test lexers
# build lexilla.so and TestLexers then run TestLexers
JOBS="--jobs=$(getconf _NPROCESSORS_ONLN)"
(
cd ../src
make "$JOBS" DEBUG=1
)
(
cd ../test
make DEBUG=1
make test
)