Changeset 947bbd3
- Timestamp:
- Feb 10, 2013, 9:10:01 PM (12 years ago)
- Branches:
- feature/autosink, feature/cnn, feature/cnn_org, feature/constantq, feature/crepe, feature/crepe_org, feature/pitchshift, feature/pydocstrings, feature/timestretch, fix/ffmpeg5, master, pitchshift, sampler, timestretch, yinfft+
- Children:
- f4296dd
- Parents:
- de836fd (diff), f360ad8 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
python/build_linux
rde836fd r947bbd3 5 5 6 6 python setup.py clean build 7 export PYTHONPATH=./build/lib.linux-x86_64-2.7/ 8 export LD_LIBRARY_PATH=../ ../build/src/7 export PYTHONPATH=./build/lib.linux-x86_64-2.7/:./tests 8 export LD_LIBRARY_PATH=../build/src/ 9 9 ./run_all_tests --verbose -
python/run_all_tests
rde836fd r947bbd3 7 7 curdir = os.path.dirname(sys.argv[0]) 8 8 if curdir == '': curdir = '.' 9 files = os.listdir( curdir)9 files = os.listdir(os.path.join(curdir, 'tests')) 10 10 modfiles = filter (lambda y: y.endswith('.py'), files) 11 11 modfiles = filter (lambda f: f.startswith('test_'), modfiles) -
wscript
rde836fd r947bbd3 198 198 bld.recurse('src examples') 199 199 from waflib import Options 200 import sys 201 if Options.platform == sys.platform: bld.recurse('tests') 200 if Options.platform != 'ios': bld.recurse('tests') 202 201 203 202 """
Note: See TracChangeset
for help on using the changeset viewer.