Changeset 4419


Ignore:
Timestamp:
Apr 24, 2007, 10:31:18 AM (17 years ago)
Author:
duncan
Message:

modify run_compile_test_all.py to run a verbose test all as well

Location:
anuga_core
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • anuga_core/run_compile_test_all.py

    r3942 r4419  
     1
     2import os, sys
    13
    24execfile('compile_all.py')
     5
     6buildroot = os.getcwd()
     7
     8os.chdir('source')
     9os.chdir('anuga')
     10   
     11print 'Changing to', os.getcwd() #This is now different from buildroot   
     12
     13print "Test verbose "
     14os.system("python test_all.py v")
     15
    316execfile('test_all.py')
    417
    518   
     19
  • anuga_core/source/anuga/shallow_water/test_data_manager.py

    r4415 r4419  
    60286028    if len(sys.argv) > 1 and sys.argv[1][0].upper() == 'V':
    60296029        sys.stdout = saveout
    6030         #fid.close() # This was causing an error in windows
    6031         #os.remove(filename)
    6032 
    6033 
     6030        fid.close()
     6031        os.remove(filename)
     6032
     6033
Note: See TracChangeset for help on using the changeset viewer.