After test-driver is restored (#10), run the tests during the build.
Another way to do this would be to add SUBDIRS = tests to Makefile.am and add tests/Makefile.am with the contents TESTS = break.yab bugs.yab grammar.yab io.yab long_variable_name.yab simple.yab. The shebang lines of the test programs would also need to change from #!./yabasic to #!../yabasic. Let me know if you'd prefer to see another pull request for this way.
After
test-driver
is restored (#10), run the tests during the build.Another way to do this would be to add
SUBDIRS = tests
toMakefile.am
and addtests/Makefile.am
with the contentsTESTS = break.yab bugs.yab grammar.yab io.yab long_variable_name.yab simple.yab
. The shebang lines of the test programs would also need to change from#!./yabasic
to#!../yabasic
. Let me know if you'd prefer to see another pull request for this way.