Skip to content
Snippets Groups Projects
Commit 0594d390 authored by Nicole Cordes's avatar Nicole Cordes Committed by Christian Kuhn
Browse files

[BUGFIX] Failing unit test in Dbal\DatabaseConnectionTest

There is one test to be sure 64bit integer values are stored correctly
in the database. This test obviously has to fail on 32bit systems as
they can't handle 64bit values. The patch disables the test for
unsupported systems.

Releases: master, 6.2
Resolves: #64651
Change-Id: I4f1047c19f4ba79df79ffdc92e38fb4f151d0add
Reviewed-on: http://review.typo3.org/36447


Reviewed-by: default avatarOliver Klee <typo3-coding@oliverklee.de>
Reviewed-by: default avatarChristian Kuhn <lolli@schwarzbu.ch>
Tested-by: default avatarChristian Kuhn <lolli@schwarzbu.ch>
parent 4e025bce
Branches
Tags
No related merge requests found
......@@ -150,6 +150,9 @@ class DatabaseConnectionTest extends AbstractTestCase {
* @see http://forge.typo3.org/issues/20427
*/
public function positive64BitIntegerIsSupported() {
if (!is_int(9223372036854775806)) {
$this->markTestSkipped('Test skipped because running on 32 bit system.');
}
$this->createFakeExtension('
CREATE TABLE tx_test_dbal (
foo int default \'0\',
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment