source: anuga_core/source/obsolete_code/validation_loop.py @ 6011

Last change on this file since 6011 was 4231, checked in by duncan, 17 years ago

paths are now relative

File size: 715 bytes
Line 
1
2import os
3revisions = [4204, 4106, 4182, 4175, 4174, 4160, 4130 ]
4for revision in revisions:
5    s = 'svn up -r %s source' %(revision)
6    print s
7    os.system(s)
8   
9    s = 'python set_pp_comp_test_all.py'
10    print s
11    os.system(s)
12
13    #root = os.sep   
14    #av_dir = os.path.join(root,'d','cit','1','dgray','validate_inundation','ga','anuga_validation','automated_validation_tests')
15    av_dir = os.path.join('..','anuga_validation','automated_validation_tests','okushiri_tank_validation')
16    os.chdir(av_dir)
17
18    ## NOT SETTING PYTHONPATH
19    s = 'python loading_pts.py'
20    print s
21    os.system(s)
22
23    av_dir = os.path.join('..','..','..','anuga_core')
24    os.chdir(av_dir)
Note: See TracBrowser for help on using the repository browser.