Ignore:
Timestamp:
16/01/09 12:31:29 (3 years ago)
Author:
Freddie Akeroyd
Message:

Change directory when running python tests. Refs #101.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/test/testsuite.at

    r1168 r1169  
    570570AT_BANNER([[Testing the Python bindings.]]) 
    571571AT_SETUP([Checking HDF4 test file]) 
    572 AT_CHECK([$HAVE_HDF4 && $HAVE_PYTHON && python $abs_srcdir/../bindings/python/nxstest.py -q hdf4 | sed -e 's/\r$//' ],[],  
     572AT_CHECK([$HAVE_HDF4 && $HAVE_PYTHON && ( cd $abs_srcdir/../bindings/python; $PYTHON nxstest.py -q hdf4 | sed -e 's/\r$//' ) ],[],  
    573573[[]]) 
    574574AT_CLEANUP 
    575575AT_SETUP([Checking HDF5 test file]) 
    576 AT_CHECK([$HAVE_HDF5 && $HAVE_PYTHON && python $abs_srcdir/../bindings/python/nxstest.py -q hdf5 | sed -e 's/\r$//' ],[],  
     576AT_CHECK([$HAVE_HDF5 && $HAVE_PYTHON && ( cd $abs_srcdir/../bindings/python; $PYTHON nxstest.py -q hdf5 | sed -e 's/\r$//' ) ],[],  
    577577[[]]) 
    578578AT_CLEANUP 
    579579AT_SETUP([Checking XML test file]) 
    580 AT_CHECK([$HAVE_XML && $HAVE_PYTHON && python $abs_srcdir/../bindings/python/nxstest.py -q xml | sed -e 's/\r$//' ],[],  
     580AT_CHECK([$HAVE_XML && $HAVE_PYTHON && ( cd $abs_srcdir/../bindings/python; $PYTHON nxstest.py -q xml | sed -e 's/\r$//' ) ],[],  
    581581[[]]) 
    582582AT_CLEANUP 
Note: See TracChangeset for help on using the changeset viewer.