feature/autosinkfeature/cnnfeature/cnn_orgfeature/constantqfeature/crepefeature/crepe_orgfeature/pitchshiftfeature/pydocstringsfeature/timestretchfix/ffmpeg5pitchshiftsamplertimestretchyinfft+
Last change
on this file since c1656cf was
c1656cf,
checked in by Paul Brossier <piem@piem.org>, 17 years ago
|
merge from main branch
|
-
Property mode set to
100755
|
File size:
426 bytes
|
Rev | Line | |
---|
[229ea56] | 1 | #! /usr/bin/python |
---|
| 2 | |
---|
| 3 | # add ${src}/python and ${src}/python/aubio/.libs to python path |
---|
| 4 | # so the script is runnable from a compiled source tree. |
---|
| 5 | import sys, os |
---|
| 6 | sys.path.append('..') |
---|
| 7 | sys.path.append(os.path.join('..','aubio','.libs')) |
---|
| 8 | |
---|
| 9 | import unittest |
---|
| 10 | |
---|
[14aebce] | 11 | modules_to_test = ['aubiomodule', 'fvec', 'cvec', 'filterbank'] |
---|
[229ea56] | 12 | |
---|
| 13 | if __name__ == '__main__': |
---|
| 14 | for module in modules_to_test: exec('from %s import *' % module) |
---|
| 15 | unittest.main() |
---|
Note: See
TracBrowser
for help on using the repository browser.