Changeset 7890
- Timestamp:
- Jul 7, 2010, 1:57:46 PM (15 years ago)
- Location:
- trunk/misc/tools/acceptance_tests
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/misc/tools/acceptance_tests/machines_cyclone
r7656 r7890 8 8 compute-1-15 slots=2 9 9 compute-1-14 slots=2 10 compute-1-13 slots=210 #compute-1-13 slots=2 11 11 #compute-1-12 slots=2 12 12 compute-1-11 slots=2 -
trunk/misc/tools/acceptance_tests/test_all.py
r7660 r7890 1 1 #!/bin/env python 2 2 3 '''Run all acceptance tests in order.''' 3 """Run all acceptance tests in order. 4 5 Currently runing with; 6 python test_all.py cyclone_log_short2.asc *> cyclone_log_long2.asc 7 8 To capture the output. EQRM unit test info is going to screen. 9 Do not know why. 10 11 """ 4 12 5 13 import os … … 10 18 11 19 # 'test_inter_latency.py' - not needed 20 # 'test_validation_anuga.py' - This might take days apparently. 21 # Not the test for us. 12 22 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 13 26 # the test files, in desired order 14 27 Tests = ['test_test_all.py', … … 17 30 'test_python_packages.py', 18 31 'test_filesystem_accessibility.py', 19 'test_ssh_to_compute_nodes.py',20 32 'test_quadrature_parallel_interleaved.py', 21 33 'test_latency_bandwidth.py', 22 'test_test_pypar.py' ,34 'test_test_pypar.py' 23 35 ] 24 25 36 #Tests += ['test_more_python_packages.py'] 26 37 if __name__ == '__main__': 27 38 home_directory = os.getcwd() … … 74 85 print 'EQRMPATH=%s' % EQRMPATH 75 86 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 '' 80 91 81 92 # put header on log -
trunk/misc/tools/acceptance_tests/test_python_packages.py
r7656 r7890 18 18 'import matplotlib', 19 19 'import pylab', 20 'import wxPython', 21 'import sqlalchemy', 20 22 ) 21 23
Note: See TracChangeset
for help on using the changeset viewer.