add test for declaration errors

This commit is contained in:
Bennet Bleßmann
2024-08-03 18:34:34 +02:00
parent 409f56ea37
commit add03cb4ee
9 changed files with 44 additions and 1 deletions

View File

@@ -0,0 +1,35 @@
```trycmd
$ scryer-prolog -f --no-add-history tests-pl/invalid_decl1.pl -g halt
error(syntax_error(inconsistent_entry),load/1).
```
```trycmd
$ scryer-prolog -f --no-add-history tests-pl/invalid_decl2.pl -g halt
error(syntax_error(inconsistent_entry),load/1).
```
```trycmd
$ scryer-prolog -f --no-add-history tests-pl/invalid_decl3.pl -g halt
error(syntax_error(inconsistent_entry),load/1).
```
```trycmd
$ scryer-prolog -f --no-add-history tests-pl/invalid_decl4.pl -g halt
error(syntax_error(inconsistent_entry),load/1).
```
```trycmd
$ scryer-prolog -f --no-add-history tests-pl/invalid_decl5.pl -g halt
error(syntax_error(inconsistent_entry),load/1).
```
```trycmd
$ scryer-prolog -f --no-add-history tests-pl/invalid_decl6.pl -g halt
error(syntax_error(inconsistent_entry),load/1).
```