Changeset 4461
- Timestamp:
- May 21, 2007, 9:19:55 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
anuga_core/source/anuga/test_all.py
r4418 r4461 54 54 sys.path.append(file) #FIXME: May cause name conflicts between pyvolution\mesh.py and pmesh\mesh.py on some systems 55 55 path_files.append(file) 56 print 'Recursing into', file56 print file + ',', 57 57 more_test_files, more_path_files =get_test_files(absolute_filename) 58 58 test_files += more_test_files … … 68 68 def regressionTest(test_verbose=False): 69 69 path = os.getcwd() 70 print 'Recursing into;' 70 71 test_files, path_files = get_test_files(path) 71 72 files = [x for x in test_files if not x == 'test_all.py'] 72 73 print 74 print 73 75 print 'Testing path %s:' %('...'+path[-50:]) 76 print 77 print 'Files tested;' 78 #print_files = [] 74 79 for file in files: 75 print ' ' + file 80 #print_files += file + ' ' 81 print file + ',', 82 print 83 print 76 84 if globals().has_key('exclude_files'): 77 85 for file in exclude_files:
Note: See TracChangeset
for help on using the changeset viewer.