Changeset 752d9f0


Ignore:
Timestamp:
12/02/10 10:50:26 (2 years ago)
Author:
Oleg Batrashev <ogbash@…>
Branches:
master, external, fix-prolong, refactor, refactor-ext, refactor-subsolvers
Children:
96b151e
Parents:
15366e2
git-author:
Oleg Batrashev <ogbash@…> (12/02/10 10:50:26)
git-committer:
Oleg Batrashev <ogbash@…> (12/02/10 10:50:26)
Message:

Acquire and free execution in test, so that test is cleaned.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • scripts/doug/test.py

    rcc21d7d r752d9f0  
    7070        def setUp(self): 
    7171                self.dougExecution.setUp() 
     72                self.dougExecution.acquire() 
    7273 
    7374        def tearDown(self): 
    74                 self.dougExecution.tearDown() 
    75  
     75                try: 
     76                        self.dougExecution.tearDown() 
     77                finally: 
     78                        self.dougExecution.free() 
    7679 
    7780        def acquire(self): 
Note: See TracChangeset for help on using the changeset viewer.