Changeset 4461


Ignore:
Timestamp:
May 21, 2007, 9:19:55 AM (17 years ago)
Author:
duncan
Message:

condensing screen output so information is not scrolled passed when using run_compile_test_all.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • anuga_core/source/anuga/test_all.py

    r4418 r4461  
    5454            sys.path.append(file) #FIXME: May cause name conflicts between pyvolution\mesh.py and pmesh\mesh.py on some systems
    5555            path_files.append(file)
    56             print 'Recursing into', file
     56            print  file + ',',
    5757            more_test_files, more_path_files =get_test_files(absolute_filename)
    5858            test_files += more_test_files
     
    6868def regressionTest(test_verbose=False):
    6969    path = os.getcwd()
     70    print 'Recursing into;'
    7071    test_files, path_files = get_test_files(path)
    7172    files = [x for x in test_files if not x == 'test_all.py']
    72 
     73    print
     74    print
    7375    print 'Testing path %s:' %('...'+path[-50:])
     76    print
     77    print 'Files tested;'
     78    #print_files = []
    7479    for file in files:
    75         print '  ' + file
     80        #print_files += file + ' '
     81        print file + ',',
     82    print
     83    print
    7684    if globals().has_key('exclude_files'):
    7785        for file in exclude_files:
Note: See TracChangeset for help on using the changeset viewer.