summaryrefslogtreecommitdiffstats
path: root/tests/wscript
diff options
context:
space:
mode:
Diffstat (limited to 'tests/wscript')
-rw-r--r--tests/wscript25
1 files changed, 0 insertions, 25 deletions
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 = ''
-