Index: trunk/phase3/tests/phpunit/includes/UploadFromUrlTest.php |
— | — | @@ -17,10 +17,6 @@ |
18 | 18 | $wgAllowAsyncCopyUploads = true; |
19 | 19 | wfSetupSession(); |
20 | 20 | |
21 | | - ini_set( 'log_errors', 1 ); |
22 | | - ini_set( 'error_reporting', 1 ); |
23 | | - ini_set( 'display_errors', 1 ); |
24 | | - |
25 | 21 | if ( wfLocalFile( 'UploadFromUrlTest.png' )->exists() ) { |
26 | 22 | $this->deleteFile( 'UploadFromUrlTest.png' ); |
27 | 23 | } |
Index: trunk/phase3/tests/phpunit/Makefile |
— | — | @@ -47,16 +47,16 @@ |
48 | 48 | parser: |
49 | 49 | ${PU} --group Parser |
50 | 50 | noparser: |
51 | | - ${PU} --exclude-group Parser,Broken |
| 51 | + ${PU} --exclude-group Parser,Broken,Stub |
52 | 52 | |
53 | 53 | safe: |
54 | | - ${PU} --exclude-group Broken,Destructive |
| 54 | + ${PU} --exclude-group Broken,Destructive,Stub |
55 | 55 | |
56 | 56 | databaseless: |
57 | | - ${PU} --exclude-group Broken,Destructive,Database |
| 57 | + ${PU} --exclude-group Broken,Destructive,Database,Stub |
58 | 58 | |
59 | 59 | database: |
60 | | - ${PU} --exclude-group Broken,Destructive --group Database |
| 60 | + ${PU} --exclude-group Broken,Destructive,Stub --group Database |
61 | 61 | |
62 | 62 | list-groups: |
63 | 63 | ${PU} --list-groups |