Changeset de5eecc


Ignore:
Timestamp:
12/05/10 23:01:01 (2 years ago)
Author:
Oleg Batrashev <ogbash@…>
Branches:
master, external, fix-prolong, refactor, refactor-ext, refactor-subsolvers
Children:
3e9ad45
Parents:
e7eec63
git-author:
Oleg Batrashev <ogbash@…> (12/05/10 23:01:01)
git-committer:
Oleg Batrashev <ogbash@…> (12/05/10 23:01:01)
Message:

Test script: always add prof.00 to tar.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • scripts/doug/execution.py

    r96b151e rde5eecc  
    173173                if solutionfname and os.path.isfile('aggr1.txt'): 
    174174                    result.setpath('doug-result', 'fineaggrsfile', 'aggr1.txt') 
     175                    #self.files.append(("aggr1.txt", "Fine aggregates")) 
    175176                if solutionfname and os.path.isfile('aggr2.txt'): 
    176177                    result.setpath('doug-result', 'coarseaggrsfile', 'aggr2.txt') 
     178                    #self.files.append(("aggr2.txt", "Coarse aggregates")) 
    177179                     
    178180                files = os.listdir(self.workdir) 
    179                 files = filter(lambda name: name.startswith('prof.'), files) 
     181                files = filter(lambda name: name.startswith('prof.00'), files) 
    180182                if files: 
    181183                    result.setpath('doug-result', 'profilefile', files[0]) 
     184                    self.files.append((os.path.join(self.workdir, files[0]), "Profile info")) 
    182185                 
    183186                # compare answers 
Note: See TracChangeset for help on using the changeset viewer.