diff options
| author | Vincent Richard <[email protected]> | 2005-07-13 00:28:02 +0200 |
|---|---|---|
| committer | Vincent Richard <[email protected]> | 2005-07-13 00:28:02 +0200 |
| commit | 681297e10b666e13cc463f6fbb16236f36c3266c (patch) | |
| tree | 5d2392e2283232ed3475cd9c69e22897b03e8a97 /SConstruct | |
| parent | Added contentHandler::extractRaw(). (diff) | |
| download | vmime-681297e10b666e13cc463f6fbb16236f36c3266c.tar.gz vmime-681297e10b666e13cc463f6fbb16236f36c3266c.zip | |
Reference counting and smart pointers.
Diffstat (limited to 'SConstruct')
| -rw-r--r-- | SConstruct | 21 |
1 files changed, 21 insertions, 0 deletions
@@ -125,6 +125,7 @@ libvmime_sources = [ 'messageId.cpp', 'messageId.hpp', 'messageIdSequence.cpp', 'messageIdSequence.hpp', 'messageParser.cpp', 'messageParser.hpp', + 'object.cpp', 'object.hpp', 'options.cpp', 'options.hpp', 'path.cpp', 'path.hpp', 'parameter.cpp', 'parameter.hpp', @@ -2092,3 +2093,23 @@ doxygenDocPath = '(doxygen-generated-files)' env.DoxygenDoc(doxygenDocPath, 'vmime.doxygen') env.Alias('doc', doxygenDocPath) + + +################ +# Unit tests # +################ + +def runTests(target, source, env): + for t in libvmimetest_sources: + print "" + print t[0] + ':' # test name + os.system(t[0]) + + return None + + +runTestsBuilder = Builder(action = runTests) +env.Append(BUILDERS = { 'RunTests' : runTestsBuilder }) + +env.Alias('run-tests', env.RunTests('foo', 'SConstruct')) + |
