This command measures the speed of parsing each grammar's examples. It also uses each grammar to parse all of the *other* grammars' examples in order to measure error recovery performance with fairly large files.
10 lines
121 B
Bash
Executable file
10 lines
121 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
. script/lib.sh
|
|
|
|
script/fetch-fixtures
|
|
script/check-mallocs
|
|
script/test -b
|
|
script/benchmark
|