Changeset de2a8af


Ignore:
Timestamp:
Oct 30, 2007, 3:00:22 AM (16 years ago)
Author:
Paul Brossier <piem@piem.org>
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:
71d9f52
Parents:
97525e4
Message:

move python/tests to tests/python, examples/tests to tests/src, add .bzrignore

Files:
2 added
1 deleted
2 edited
37 moved

Legend:

Unmodified
Added
Removed
  • configure.ac

    r97525e4 rde2a8af  
    241241    ext/Makefile
    242242    examples/Makefile
    243     examples/tests/Makefile
     243    tests/Makefile
     244    tests/src/Makefile
    244245    sounds/Makefile
    245246    swig/Makefile
  • examples/Makefile.am

    r97525e4 rde2a8af  
    1 if COMPILE_TESTS
    2 SUBDIRS = tests
    3 endif
    4 
    51# global flags
    62AM_CFLAGS = -DAUBIO_PREFIX=\"$(prefix)\" -I$(top_srcdir)/src -I$(top_srcdir)/ext @AUBIO_CFLAGS@ @LASH_CFLAGS@ @FFTWLIB_CFLAGS@
  • tests/python/run_all_tests

    r97525e4 rde2a8af  
    44# so the script is runnable from a compiled source tree.
    55import sys, os
    6 sys.path.append('..')
    7 sys.path.append(os.path.join('..','aubio','.libs'))
     6
     7cur_dir = os.path.dirname(sys.argv[0])
     8sys.path.append(os.path.join(cur_dir,'..','..','python'))
     9sys.path.append(os.path.join(cur_dir,'..','..','python','aubio','.libs'))
    810
    911import unittest
Note: See TracChangeset for help on using the changeset viewer.