Changeset 6707 for anuga_validation/automated_validation_tests
- Timestamp:
- Apr 2, 2009, 6:36:15 PM (16 years ago)
- Location:
- anuga_validation/automated_validation_tests
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
anuga_validation/automated_validation_tests/flow_tests/validate_flow.py
r6705 r6707 9 9 class Test_flow(unittest.TestCase): 10 10 def setUp(self): 11 if file.endswith('.stdout') or\ 12 file.endswith('.sww') or\ 13 file.endswith('.msh'): 11 for file in os.listdir('.'): 12 if file.endswith('.stdout') or\ 13 file.endswith('.sww') or\ 14 file.endswith('.msh'): 14 15 os.remove(file) 15 16 -
anuga_validation/automated_validation_tests/okushiri_tank_validation/validate_okushiri.py
r6706 r6707 13 13 for file in os.listdir('.'): 14 14 if file.endswith('.stdout') or\ 15 file.endswith('.sww') or\16 file.endswith('.msh'):15 file.endswith('.sww') or\ 16 file.endswith('.msh'): 17 17 os.remove(file) 18 18 19 19 20 20 def tearDown(self): 21 21 pass
Note: See TracChangeset
for help on using the changeset viewer.