Changeset 7263
- Timestamp:
- Jun 24, 2009, 4:29:58 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/numpy_anuga_validation/automated_validation_tests/validate_all.py
r7262 r7263 37 37 # print 'filename path', path, filename 38 38 39 os.chdir(path) # Change to sub directory 40 execfile(filename) # Run validation test 41 os.chdir(os.pardir) # Back to parent directory 39 os.chdir(path) 40 s = 'python %s' %(filename) 41 print s 42 os.system(s) 43 44 # Back to parent directory 45 os.chdir(os.pardir) 42 46 43 47 # print 'current dir', os.getcwd()
Note: See TracChangeset
for help on using the changeset viewer.