Changeset 7891


Ignore:
Timestamp:
Jul 7, 2010, 2:34:44 PM (14 years ago)
Author:
gray
Message:

updating to do acceptance testing on stable version of ANUGA.

Location:
branches/anuga_1_2_0/misc/tools/acceptance_tests
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/anuga_1_2_0/misc/tools/acceptance_tests/machines_cyclone

    r7656 r7891  
    88compute-1-15 slots=2
    99compute-1-14 slots=2
    10 compute-1-13 slots=2
     10#compute-1-13 slots=2
    1111#compute-1-12 slots=2
    1212compute-1-11 slots=2
  • branches/anuga_1_2_0/misc/tools/acceptance_tests/test_all.py

    r7660 r7891  
    11#!/bin/env python
    22
    3 '''Run all acceptance tests in order.'''
     3"""Run all acceptance tests in order.
     4
     5Currently runing with;
     6python test_all.py cyclone_log_short2.asc *> cyclone_log_long2.asc
     7
     8To capture the output.  EQRM unit test info is going to screen.
     9Do not know why.
     10
     11"""
    412
    513import os
     
    1018
    1119# 'test_inter_latency.py' - not needed
     20# 'test_validation_anuga.py' - This might take days apparently.
     21# Not the test for us.
    1222
     23#         'test_ssh_to_compute_nodes.py', this relies on the internal
     24# structure of test_utils, which is a complication I don't need right now.
     25         
    1326# the test files, in desired order
    1427Tests = ['test_test_all.py',
     
    1730         'test_python_packages.py',
    1831         'test_filesystem_accessibility.py',
    19          'test_ssh_to_compute_nodes.py',
    2032         'test_quadrature_parallel_interleaved.py',
    2133         'test_latency_bandwidth.py',
    22          'test_test_pypar.py',
     34         'test_test_pypar.py'
    2335        ]
    24 
    25 
     36#Tests += ['test_more_python_packages.py']
    2637if __name__ == '__main__':
    2738    home_directory = os.getcwd()
     
    7485    print 'EQRMPATH=%s' % EQRMPATH
    7586    print ''
    76     res = raw_input('This test will run with the above environment variables, OK? ')
    77     if len(res) == 0 or res[0].upper() != 'Y':
    78         sys.exit(10)
    79     print ''
     87#     res = raw_input('This test will run with the above environment variables, OK? ')
     88#     if len(res) == 0 or res[0].upper() != 'Y':
     89#         sys.exit(10)
     90#     print ''
    8091
    8192    # put header on log
  • branches/anuga_1_2_0/misc/tools/acceptance_tests/test_python_packages.py

    r7656 r7891  
    1818                   'import matplotlib',
    1919                   'import pylab',
     20                   'import wxPython',
     21                   'import sqlalchemy',
    2022                  )
    2123
Note: See TracChangeset for help on using the changeset viewer.