Changeset 7662 for misc/tools
- Timestamp:
- Mar 12, 2010, 10:00:17 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
misc/tools/acceptance_tests/test_all.py
r7660 r7662 1 1 #!/bin/env python 2 2 3 '''Run all acceptance tests in order.''' 3 """Run all acceptance tests in order.""" 4 4 5 5 import os … … 21 21 'test_latency_bandwidth.py', 22 22 'test_test_pypar.py', 23 'test_validation_anuga.py' 23 24 ] 24 25 25 26 26 if __name__ == '__main__': … … 74 74 print 'EQRMPATH=%s' % EQRMPATH 75 75 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 ''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 '' 80 80 81 81 # put header on log
Note: See TracChangeset
for help on using the changeset viewer.