summaryrefslogtreecommitdiffstats
path: root/tests/auto/qsqlquery
diff options
context:
space:
mode:
authorBill King <bill.king@nokia.com>2009-10-20 03:51:06 (GMT)
committerBill King <bill.king@nokia.com>2009-10-20 03:53:47 (GMT)
commitf38eb1b6edf8f6d758899c8ca4a4bae2d7eb4b92 (patch)
tree3f9446f186eaca2a42d2afa43ff3c4c0c33f0fb2 /tests/auto/qsqlquery
parent31fefc7cc9dc01be244b362ada1c1b2f8aad7c47 (diff)
downloadQt-f38eb1b6edf8f6d758899c8ca4a4bae2d7eb4b92.zip
Qt-f38eb1b6edf8f6d758899c8ca4a4bae2d7eb4b92.tar.gz
Qt-f38eb1b6edf8f6d758899c8ca4a4bae2d7eb4b92.tar.bz2
Fix now invalid ExpectFail.
The bug causing this fail is now fixed, so remove the expectfails.
Diffstat (limited to 'tests/auto/qsqlquery')
-rw-r--r--tests/auto/qsqlquery/tst_qsqlquery.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/tests/auto/qsqlquery/tst_qsqlquery.cpp b/tests/auto/qsqlquery/tst_qsqlquery.cpp
index 546c105..98030d1 100644
--- a/tests/auto/qsqlquery/tst_qsqlquery.cpp
+++ b/tests/auto/qsqlquery/tst_qsqlquery.cpp
@@ -194,7 +194,6 @@ private slots:
void sqlServerReturn0_data() { generic_data(); }
void sqlServerReturn0();
-
private:
// returns all database connections
void generic_data(const QString &engine=QString());
@@ -510,9 +509,7 @@ void tst_QSqlQuery::mysqlOutValues()
QVERIFY_SQL( q, exec( "create procedure " + qTableName( "qtestproc" ) + " () "
"BEGIN select * from " + qTableName( "qtest" ) + " order by id; END" ) );
QVERIFY_SQL( q, exec( "call " + qTableName( "qtestproc" ) + "()" ) );
- QEXPECT_FAIL("", "There's a mysql bug that means only selects think they return data when running in prepared mode", Continue);
QVERIFY_SQL( q, next() );
- QEXPECT_FAIL("", "There's a mysql bug that means only selects think they return data when running in prepared mode", Continue);
QCOMPARE( q.value( 1 ).toString(), QString( "VarChar1" ) );
QVERIFY_SQL( q, exec( "drop procedure " + qTableName( "qtestproc" ) ) );