1
0
mirror of https://github.com/DoctorWkt/pdp7-unix.git synced 2026-04-29 21:26:48 +00:00

script to run tests

This commit is contained in:
Tom Everett
2016-03-08 18:11:18 -07:00
parent e3f30f6628
commit 88583545d2
2 changed files with 11 additions and 2 deletions

6
.gitignore vendored
View File

@@ -1,2 +1,4 @@
bin
sys
/bin
/sys
/tests

View File

@@ -65,6 +65,13 @@ tests: dirs
$(AS) $(ASARGS) -o $(TESTDIR)/testmul src/tests/testmul.s
$(AS) $(ASARGS) -o $(TESTDIR)/write_test src/tests/write_test.s
runtests: tests
cd tests && ../tools/a7out decimal_out
cd tests && ../tools/a7out fork_test
cd tests && ../tools/a7out octal_test
# cd tests && ../tools/a7out testmul
# cd tests && ../tools/a7out write_test
clean:
rm -rf $(SYSDIR)/*
rm -rf $(CMDDIR)/*