chore: Move test-for-errors to test directory

This commit is contained in:
Erik Svedang 2020-11-28 13:11:43 +01:00
parent f78fd16a71
commit 8de4808b74
40 changed files with 3 additions and 1 deletions

2
.gitignore vendored
View File

@ -22,3 +22,5 @@ flamegraph.svg
/docs/core/*.html
/docs/sdl/*.html
/docs/sdl/.DS_Store
*/.DS_Store
.DS_Store

View File

@ -34,7 +34,7 @@ for f in ./test/*.carp; do
done
echo "Test for correct error messages when doing "carp --check" on the source."
for f in ./test-for-errors/*.carp; do
for f in ./test/test-for-errors/*.carp; do
echo $f
./test/check.sh $f
done