Remove obsolete code from qdbusmarshall test.

The removed code had been disabled since 2007 and tested functionality
that was no longer supported.

Change-Id: I49dfe58601c1cc6d41590ab2980daba27eca6bfb
Reviewed-by: Rohan McGovern <rohan.mcgovern@nokia.com>
This commit is contained in:
Jason McDonald 2011-11-01 12:45:40 +10:00 committed by Qt by Nokia
parent 5b744aefa3
commit 983ba6510b

View File

@ -726,12 +726,6 @@ void tst_QDBusMarshall::sendArgument_data()
arg << 1 << 2U << short(-3) << ushort(4) << 5.0 << false;
arg.endStructure();
QTest::newRow("structure") << qVariantFromValue(arg) << "(iunqdb)" << int(QDBusArgument::StructureType);
#if 0
// this is now unsupported
arg << 1 << 2U << short(-3) << ushort(4) << 5.0 << false;
QTest::newRow("many-args") << qVariantFromValue(arg) << "(iunqdb)iunqdb";
#endif
}
void tst_QDBusMarshall::sendBasic()