Modified:
trunk/SDK/MYSQLPlus/Tests/MYSQLPlusTest.cpp
Log:
commented out 64bit int test on non-windows for now (doesnt compile)
Modified: trunk/SDK/MYSQLPlus/Tests/MYSQLPlusTest.cpp
===================================================================
--- trunk/SDK/MYSQLPlus/Tests/MYSQLPlusTest.cpp 2007-03-27 22:10:29 UTC (rev 820)
+++ trunk/SDK/MYSQLPlus/Tests/MYSQLPlusTest.cpp 2007-03-29 15:15:27 UTC (rev 821)
@@ -819,6 +819,8 @@
SQLUBIGINT ui;
QVariant v;
+ /* TODO fix for unix, need to differentiate between native and struct? */
+#ifdef _WIN32
/* outside 4-byte range */
i = -999888777666;
QVERIFY(!MDataConvert::cToQVariant(SQL_C_SBIGINT, (SQLPOINTER)&i, 0, v));
@@ -828,6 +830,7 @@
ui = 999888777666;
QVERIFY(!MDataConvert::cToQVariant(SQL_C_UBIGINT, (SQLPOINTER)&ui, 0, v));
QCOMPARE(v.toULongLong(), (qulonglong)ui);
+#endif
}
/*!
| Thread |
|---|
| • Connector/ODBC 5 commit: r821 - trunk/SDK/MYSQLPlus/Tests | jbalint | 29 Mar |