diff options
author | Bill King <bill.king@nokia.com> | 2009-08-11 03:50:12 (GMT) |
---|---|---|
committer | Bill King <bill.king@nokia.com> | 2009-08-11 03:54:14 (GMT) |
commit | b200e79d5df436f2c881f8a2bc5534ee53e664d5 (patch) | |
tree | 91592812919b73c8229c549267d05691cd686020 /tests/auto/q3sqlcursor | |
parent | 276ad6012620864d4e9fb4a9cb45bcf904c9fbc3 (diff) | |
download | Qt-b200e79d5df436f2c881f8a2bc5534ee53e664d5.zip Qt-b200e79d5df436f2c881f8a2bc5534ee53e664d5.tar.gz Qt-b200e79d5df436f2c881f8a2bc5534ee53e664d5.tar.bz2 |
Fixes false fails in interbase autotests.
Diffstat (limited to 'tests/auto/q3sqlcursor')
-rw-r--r-- | tests/auto/q3sqlcursor/tst_q3sqlcursor.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/auto/q3sqlcursor/tst_q3sqlcursor.cpp b/tests/auto/q3sqlcursor/tst_q3sqlcursor.cpp index e5a9b01..0f30656 100644 --- a/tests/auto/q3sqlcursor/tst_q3sqlcursor.cpp +++ b/tests/auto/q3sqlcursor/tst_q3sqlcursor.cpp @@ -524,6 +524,9 @@ void tst_Q3SqlCursor::unicode() if ( !db.driver()->hasFeature( QSqlDriver::Unicode ) ) { QSKIP( "DBMS not Unicode capable", SkipSingle ); } + // ascii in the data storage, can't transliterate properly. invalid test. + if(db.driverName().startsWith("QIBASE") && (db.databaseName() == "silence.nokia.troll.no:c:\\ibase\\testdb_ascii" || db.databaseName() == "/opt/interbase/qttest.gdb")) + QSKIP("Can't transliterate extended unicode to ascii", SkipSingle); Q3SqlCursor cur( qTableName( "qtest_unicode" ), true, db ); QSqlRecord* irec = cur.primeInsert(); |