Index: trunk/phase3/tests/phpunit/includes/filerepo/FileBackendTest.php |
— | — | @@ -200,6 +200,7 @@ |
201 | 201 | $this->backend = $this->multiBackend; |
202 | 202 | $this->tearDownFiles(); |
203 | 203 | $this->doTestStore( $op ); |
| 204 | + $this->filesToPrune[] = $op['src']; # avoid file leaking |
204 | 205 | $this->tearDownFiles(); |
205 | 206 | } |
206 | 207 | |
— | — | @@ -662,6 +663,7 @@ |
663 | 664 | $this->backend = $this->multiBackend; |
664 | 665 | $this->tearDownFiles(); |
665 | 666 | $this->doTestConcatenate( $op, $srcs, $srcsContent, $alreadyExists, $okStatus ); |
| 667 | + $this->filesToPrune[] = $op['dst']; # avoid file leaking |
666 | 668 | $this->tearDownFiles(); |
667 | 669 | } |
668 | 670 | |