From: Paul Brossier Date: Thu, 25 Oct 2007 02:02:06 +0000 (+0200) Subject: merge from main branch X-Git-Tag: 0.4.0-beta1~969^2 X-Git-Url: https://git.aubio.org/?a=commitdiff_plain;h=c1656cf8f471bd852affbd839abbfff6e7b8f210;p=aubio.git merge from main branch --- c1656cf8f471bd852affbd839abbfff6e7b8f210 diff --cc python/test/run_all_tests index 00000000,a066ca3a..56cefc23 mode 000000,100755..100755 --- a/python/test/run_all_tests +++ b/python/test/run_all_tests @@@ -1,0 -1,15 +1,15 @@@ + #! /usr/bin/python + + # add ${src}/python and ${src}/python/aubio/.libs to python path + # so the script is runnable from a compiled source tree. + import sys, os + sys.path.append('..') + sys.path.append(os.path.join('..','aubio','.libs')) + + import unittest + -modules_to_test = ['aubiomodule', 'fvec', 'cvec'] ++modules_to_test = ['aubiomodule', 'fvec', 'cvec', 'filterbank'] + + if __name__ == '__main__': + for module in modules_to_test: exec('from %s import *' % module) + unittest.main()