[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [libredwg] make check works (sort of)
From: |
Pero Brbora |
Subject: |
Re: [libredwg] make check works (sort of) |
Date: |
Wed, 25 Mar 2015 22:34:19 +0100 |
User-agent: |
Internet Messaging Program (IMP) H4 (5.0.23) |
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