Parent Directory
|
Revision Log
Fixed for reporting of METHOD errors in PyGTK GUI. Removed libasctest target (was causing messed up build on Windows) Removed attempt to link libasctestsuite to -ldl on Windows (not necessary) Adding reporting in test.c when no tests have been registered (to flag a problem with static/dynamic linking of CUnit on Windows)
| 1 | Import('env') |
| 2 | |
| 3 | srcs = Split(""" |
| 4 | redirectStdStreams.c |
| 5 | printutil.c |
| 6 | assertimpl.c |
| 7 | """) |
| 8 | |
| 9 | test_cpppath = [ |
| 10 | '#base/generic' |
| 11 | , '#test' |
| 12 | ] |
| 13 | if env.has_key('CUNIT_CPPPATH'): |
| 14 | test_cpppath.append(env['CUNIT_CPPPATH']) |
| 15 | |
| 16 | #env.Library('asctest',srcs |
| 17 | # , CPPPATH=test_cpppath |
| 18 | #) |
| john.pye@anu.edu.au | ViewVC Help |
| Powered by ViewVC 1.1.22 |