diff options
Diffstat (limited to 'scripts/test-e2e.sh')
| -rwxr-xr-x | scripts/test-e2e.sh | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/scripts/test-e2e.sh b/scripts/test-e2e.sh index ca4dbbb..2f7ff5f 100755 --- a/scripts/test-e2e.sh +++ b/scripts/test-e2e.sh @@ -71,6 +71,11 @@ echo "test: custom => asan_reserve_constant.nes" diff tests/out/asan_reserve_constant.txt tests/expected/asan_reserve_constant.txt exit_code=$((exit_code + $?)) +echo "test: custom => bad_jal.nes" +./target/debug/nasm -c empty --asan tests/bad_jal.s -o /dev/null 2>tests/out/bad_jal.txt +diff tests/out/bad_jal.txt tests/expected/bad_jal.txt +exit_code=$((exit_code + $?)) + ## # code.nes |
