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