This is "make homework".
I have found why make check fails on programs in unit-testing. At
least here (using latest git revision) test programs are not passed
any argumets. I have edited Makefile (added example.dwg in apropriate
place):
LINE: "if $(TESTS_ENVIRONMENT) $${dir}$$tst $(AM_TESTS_FD_REDIRECT); then \"
CHANGED TO: "if $(TESTS_ENVIRONMENT) $${dir}$$tst example.dwg
$(AM_TESTS_FD_REDIRECT); then \"
Now it's 40 of 40 test passed. This requires Makefile.in to be changed, right?
Also after "chmod a+x examples/alive.test" command alive test is passed too.
Bye