diff options
| author | Nils Adermann <naderman@naderman.de> | 2012-05-22 19:41:45 +0200 |
|---|---|---|
| committer | Nils Adermann <naderman@naderman.de> | 2012-05-22 19:41:45 +0200 |
| commit | 440e699bc55dc0171e9b16374a3b2d1dc52eecbf (patch) | |
| tree | fa11a07c8920a87efdca379d23bd5ffbad949f43 | |
| parent | 5d5049710c8e5109408ff06f35c362bac2066417 (diff) | |
| parent | bad91d8e74eea420d9ea7d9a0ac0ecf47d23fdb7 (diff) | |
| download | forums-440e699bc55dc0171e9b16374a3b2d1dc52eecbf.tar forums-440e699bc55dc0171e9b16374a3b2d1dc52eecbf.tar.gz forums-440e699bc55dc0171e9b16374a3b2d1dc52eecbf.tar.bz2 forums-440e699bc55dc0171e9b16374a3b2d1dc52eecbf.tar.xz forums-440e699bc55dc0171e9b16374a3b2d1dc52eecbf.zip | |
Merge remote-tracking branch 'github-bantu/ticket/10907' into develop-olympus
By Andreas Fischer
via Andreas Fischer
* github-bantu/ticket/10907:
[ticket/10907] Mark (var)binary tests as incomplete on non-MySQL DBMSes.
| -rw-r--r-- | tests/dbal/db_tools_test.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/dbal/db_tools_test.php b/tests/dbal/db_tools_test.php index 9bed0648cd..c20e46011f 100644 --- a/tests/dbal/db_tools_test.php +++ b/tests/dbal/db_tools_test.php @@ -165,6 +165,11 @@ class phpbb_dbal_db_tools_test extends phpbb_database_test_case */ public function test_created_column($column_name, $column_value) { + if ($column_name === 'c_varbinary' && stripos(get_class($this->db), 'mysql') === false) + { + $this->markTestIncomplete('Binary handling is not implemented properly on non-MySQL DBMSes.'); + } + $row_insert = self::get_default_values(); $row_insert[$column_name] = $column_value; |
