diff options
author | David Robillard <d@drobilla.net> | 2010-01-07 21:27:39 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2010-01-07 21:27:39 +0000 |
commit | 936348fd730f2d3ebc5376b555f0cfc1e633c019 (patch) | |
tree | 007c54a11246877df07e00f11559380282826ccf /test/wscript | |
parent | 5e4654826a1b726a8b2fc88520975311a2553d71 (diff) | |
download | lilv-936348fd730f2d3ebc5376b555f0cfc1e633c019.tar.gz lilv-936348fd730f2d3ebc5376b555f0cfc1e633c019.tar.bz2 lilv-936348fd730f2d3ebc5376b555f0cfc1e633c019.zip |
Move unit testing and coverage framework into autowaf.
Make raul tests return 0 on success, 1 on failure.
Test coverage for Raul.
git-svn-id: http://svn.drobilla.net/lad/trunk/slv2@2368 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'test/wscript')
-rw-r--r-- | test/wscript | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/test/wscript b/test/wscript deleted file mode 100644 index 11f5b33..0000000 --- a/test/wscript +++ /dev/null @@ -1,18 +0,0 @@ -#!/usr/bin/env python - -def build(bld): - tests = ''' - slv2_test - ''' - if bld.env['BUILD_TESTS']: - for i in tests.split(): - obj = bld.new_task_gen('cc', 'program') - obj.source = i + '.c' - obj.includes = '..' - obj.uselib_local = 'libslv2_static' - obj.uselib = 'REDLAND LV2CORE' - obj.libs = 'gcov' - obj.target = i - obj.install_path = '' - obj.ccflags = [ '-fprofile-arcs', '-ftest-coverage' ] - |