summaryrefslogtreecommitdiff
path: root/tests/phpunit/maintenance/backupTextPassTest.php
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@sbcglobal.net>2016-05-01 15:32:59 -0400
committerLuke Shumaker <lukeshu@sbcglobal.net>2016-05-01 15:32:59 -0400
commit6dc1997577fab2c366781fd7048144935afa0012 (patch)
tree8918d28c7ab4342f0738985e37af1dfc42d0e93a /tests/phpunit/maintenance/backupTextPassTest.php
parent150f94f051128f367bc89f6b7e5f57eb2a69fc62 (diff)
parentfa89acd685cb09cdbe1c64cbb721ec64975bbbc1 (diff)
Merge commit 'fa89acd'
# Conflicts: # .gitignore # extensions/ArchInterWiki.sql
Diffstat (limited to 'tests/phpunit/maintenance/backupTextPassTest.php')
-rw-r--r--tests/phpunit/maintenance/backupTextPassTest.php8
1 files changed, 7 insertions, 1 deletions
diff --git a/tests/phpunit/maintenance/backupTextPassTest.php b/tests/phpunit/maintenance/backupTextPassTest.php
index a5ef7624..c216864e 100644
--- a/tests/phpunit/maintenance/backupTextPassTest.php
+++ b/tests/phpunit/maintenance/backupTextPassTest.php
@@ -418,7 +418,10 @@ class TextPassDumperDatabaseTest extends DumpTestCase {
}
/**
+ * Broken per T70653.
+ *
* @group large
+ * @group Broken
*/
function testCheckpointPlain() {
$this->checkpointHelper();
@@ -434,7 +437,10 @@ class TextPassDumperDatabaseTest extends DumpTestCase {
* PHP extensions, we go for gzip instead, which triggers the same relevant code
* paths while still being testable on more systems.
*
+ * Broken per T70653.
+ *
* @group large
+ * @group Broken
*/
function testCheckpointGzip() {
$this->checkHasGzip();
@@ -630,7 +636,7 @@ class TextPassDumperDatabaselessTest extends MediaWikiLangTestCase {
*/
function testBufferSizeSetting( $expected, $size, $msg ) {
$dumper = new TextPassDumperAccessor( array( "--buffersize=" . $size ) );
- $this->assertEquals( $expected, $dumper->getBufferSize(), $msg);
+ $this->assertEquals( $expected, $dumper->getBufferSize(), $msg );
}
/**