aboutsummaryrefslogtreecommitdiffstats
path: root/tests/dbal
diff options
context:
space:
mode:
authorNils Adermann <naderman@naderman.de>2012-05-22 19:42:25 +0200
committerNils Adermann <naderman@naderman.de>2012-05-22 19:42:25 +0200
commit221154a4356e26effc28448d8e161fddde26a4e1 (patch)
tree7d5ec10bb73486477d021a7bdf3311eafba57768 /tests/dbal
parent6956a6eb00e168ebb8b382607f34c98fe174f060 (diff)
parent440e699bc55dc0171e9b16374a3b2d1dc52eecbf (diff)
downloadforums-221154a4356e26effc28448d8e161fddde26a4e1.tar
forums-221154a4356e26effc28448d8e161fddde26a4e1.tar.gz
forums-221154a4356e26effc28448d8e161fddde26a4e1.tar.bz2
forums-221154a4356e26effc28448d8e161fddde26a4e1.tar.xz
forums-221154a4356e26effc28448d8e161fddde26a4e1.zip
Merge branch 'develop-olympus' into develop
By Andreas Fischer via Andreas Fischer (1) and Nils Adermann (1) * develop-olympus: [ticket/10907] Mark (var)binary tests as incomplete on non-MySQL DBMSes.
Diffstat (limited to 'tests/dbal')
-rw-r--r--tests/dbal/db_tools_test.php5
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;