Ignore:
Timestamp:
May 13, 2009, 3:05:43 PM (15 years ago)
Author:
rwilson
Message:

Added EQRM to acceptance suite.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/numpy_misc/tools/acceptance_tests/test_all.py

    r7017 r7025  
    1818         'test_latency_bandwidth.py',
    1919         'test_test_pypar.py',
    20          'test_test_all.py']
     20#         'test_inter_latency.py',
     21         'test_test_all.py',
     22         'test_eqrm.py',
     23        ]
    2124
    2225
     
    5255    python = os.getenv('PYTHON')
    5356    pythonpath = os.getenv('PYTHONPATH')
     57    eqrmpath = os.getenv('EQRMPATH')
     58    if eqrmpath is None:
     59        eqrmpath = ''
    5460    if not python or not pythonpath:
    5561        if not python:
     
    6672    print 'PYTHON=%s' % python
    6773    print 'PYTHONPATH=%s' % pythonpath
     74    print 'EQRMPATH=%s' % eqrmpath
    6875    print ''
    6976    res = raw_input('This test will run with the above environment variables, OK? ')
    70     if res[0].upper() != 'Y':
     77    if len(res) == 0 or res[0].upper() != 'Y':
    7178        sys.exit(10)
    7279    print ''
Note: See TracChangeset for help on using the changeset viewer.