2021-02-21 05:53:09 +01:00
|
|
|
# Test lexers
|
|
|
|
# build lexilla.so and TestLexers then run TestLexers
|
2022-04-13 13:10:12 +02:00
|
|
|
JOBS="--jobs=$(getconf _NPROCESSORS_ONLN)"
|
|
|
|
(
|
2021-02-21 05:53:09 +01:00
|
|
|
cd ../src
|
2022-04-13 13:10:12 +02:00
|
|
|
make "$JOBS" DEBUG=1
|
|
|
|
)
|
|
|
|
(
|
2021-02-21 05:53:09 +01:00
|
|
|
cd ../test
|
2022-01-05 00:07:50 +01:00
|
|
|
make DEBUG=1
|
2021-02-21 05:53:09 +01:00
|
|
|
make test
|
2022-04-13 13:10:12 +02:00
|
|
|
)
|