diff options
| author | John J. Camilleri <john@digitalgrammars.com> | 2021-07-01 11:47:14 +0200 |
|---|---|---|
| committer | John J. Camilleri <john@digitalgrammars.com> | 2021-07-01 11:47:14 +0200 |
| commit | e5a2aed5b6e31fe89e94e9fd9c22e2488f85cae8 (patch) | |
| tree | d085258fe05b04fa735fe770c002e5d62878e550 /testsuite/canonical/run.sh | |
| parent | 13575b093f265eb8c089df0f40b43ba5fd0f67af (diff) | |
Remove record fields not in lincat
Fixes #100, #101
Diffstat (limited to 'testsuite/canonical/run.sh')
| -rwxr-xr-x | testsuite/canonical/run.sh | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/testsuite/canonical/run.sh b/testsuite/canonical/run.sh index be7d1ff6c..c39f1e557 100755 --- a/testsuite/canonical/run.sh +++ b/testsuite/canonical/run.sh @@ -9,7 +9,14 @@ if [ $? -ne 0 ]; then echo "Canonical grammar doesn't compile: FAIL" FAILURES=$((FAILURES+1)) else - echo "Canonical grammar compiles: OK" + # echo "Canonical grammar compiles: OK" + diff canonical/PhrasebookBul.gf gold/PhrasebookBul.gf + if [ $? -ne 0 ]; then + echo "Canonical grammar doesn't match gold version: FAIL" + FAILURES=$((FAILURES+1)) + else + echo "Canonical grammar matches gold version: OK" + fi fi echo "" |
