From 0d009a4e980e40dc8a9c9b5e3d25c3fafb363e95 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Thu, 7 Jan 2010 21:27:39 +0000 Subject: 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/raul@2368 a436a847-0d15-0410-975c-d299462d15a1 --- tests/wscript | 25 ------------------------- 1 file changed, 25 deletions(-) delete mode 100644 tests/wscript (limited to 'tests/wscript') diff --git a/tests/wscript b/tests/wscript deleted file mode 100644 index 1997c1a..0000000 --- a/tests/wscript +++ /dev/null @@ -1,25 +0,0 @@ -#!/usr/bin/env python - -def build(bld): - tests = ''' - path_test - thread_test - queue_test - ringbuffer_test - midi_ringbuffer_test - atomic_test - list_test - time_test - quantize_test - smf_test - table_test - ''' - if bld.env['BUILD_TESTS']: - for i in tests.split(): - obj = bld.new_task_gen('cxx', 'program') - obj.source = i + '.cpp' - obj.includes = '..' - obj.uselib_local = 'libraul' - obj.target = i - obj.install_path = '' - -- cgit v1.2.1