Small reorganization of unit tests

This commit is contained in:
Alexander Afanasyev
2012-03-05 21:24:49 -08:00
parent b71beabf0c
commit 150f14d0ea
4 changed files with 71 additions and 14 deletions
+5 -2
View File
@@ -29,11 +29,14 @@ def build (bld):
uselib = 'BOOST BOOST_IOSTREAMS SSL'
)
bld.program (target="testapp",
source = "test/testapp.cc",
# Unit tests
bld.program (target="utit-tests",
source = bld.path.ant_glob(['test/**/*.cc']),
features=['cxx', 'cxxprogram'],
use = 'BOOST_TEST sync')
# doxygen docs
from waflib.Build import BuildContext
class doxy (BuildContext):
cmd = "doxygen"