diff options
author | Oxore <oxore@protonmail.com> | 2023-08-06 01:17:25 +0300 |
---|---|---|
committer | Oxore <oxore@protonmail.com> | 2023-08-06 01:17:25 +0300 |
commit | d9edff0cdc1792401e5a0b7fb556463a7637fbf0 (patch) | |
tree | 2f63378c1171dabee98130d23637f3021e563ced /test.sh | |
parent | 04e380b927ee78f5474d1d87fa59383771c720aa (diff) |
Add tests
Diffstat (limited to 'test.sh')
-rwxr-xr-x | test.sh | 14 |
1 files changed, 14 insertions, 0 deletions
@@ -0,0 +1,14 @@ +#!/bin/sh + +set -e + +dosbuild_dir='tests' + +mkdir -p "$dosbuild_dir" +cat <<END >"$dosbuild_dir/build.bat" +path d:\\dosemu;e:\\sierra\\bin +set INCLUDE68=e:\\sierra\\include +set TEMP=c:\\tmp +END +echo "asm68 -l -Q -o test1.o test1.S" >>"$dosbuild_dir/build.bat" +dosemu -quiet -K "$dosbuild_dir" -E'build.bat' |