Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/tests/test.py

    rac032b5 rc2d5e28  
    197197                        # fetch return code and error from the diff command
    198198                        retcode, error = diff(".expect/%s.txt" % test.path, ".out/%s.log" % test.name, dry_run)
    199 
    200         else:
    201                 with open (out_file, "r") as myfile:
    202                         error = myfile.read()
    203 
    204                
    205199        # clean the executable
    206200        sh("rm -f %s > /dev/null 2>&1" % test.name, dry_run)
     
    259253        # for each test to run
    260254        try :
    261                 results = pool.map_async(partial(run_test_worker, generate=generate, dry_run=dry_run, debug=debug), tests, chunksize = 1 ).get(7200)
     255                results = pool.map_async(partial(run_test_worker, generate=generate, dry_run=dry_run, debug=debug), tests ).get(3600)
    262256        except KeyboardInterrupt:
    263257                pool.terminate()
Note: See TracChangeset for help on using the changeset viewer.