diff options
author | Peter Hartmann <peter.hartmann@nokia.com> | 2010-06-22 11:53:03 (GMT) |
---|---|---|
committer | Peter Hartmann <peter.hartmann@nokia.com> | 2010-08-05 11:39:07 (GMT) |
commit | f3f95d4282ffbfb307e98d20a166ced4cc982061 (patch) | |
tree | 2ebf22bcb63c36867bef46777befe1f8f81c6366 /tests/auto/xmlpatternsvalidator/tst_xmlpatternsvalidator.cpp | |
parent | 7de8a0c487ce6a7f13c2028e93648807ef7d8e8b (diff) | |
download | Qt-f3f95d4282ffbfb307e98d20a166ced4cc982061.zip Qt-f3f95d4282ffbfb307e98d20a166ced4cc982061.tar.gz Qt-f3f95d4282ffbfb307e98d20a166ced4cc982061.tar.bz2 |
QXmlPatterns QAbstractDateTime: only parse 3 digits of time fraction
the XML Schema dateTime type allows for an unlimited precision of
fractial time values; this fails for 4 or more digits when creating a
QTime. This patch takes only 3 digits of the time fraction into account,
since we cannot store more in a QTime or QDateTime anyway.
Reviewed-by: Olivier Goffart
Task-number: QTBUG-11559
Diffstat (limited to 'tests/auto/xmlpatternsvalidator/tst_xmlpatternsvalidator.cpp')
-rw-r--r-- | tests/auto/xmlpatternsvalidator/tst_xmlpatternsvalidator.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/auto/xmlpatternsvalidator/tst_xmlpatternsvalidator.cpp b/tests/auto/xmlpatternsvalidator/tst_xmlpatternsvalidator.cpp index 3517b5a..092e966 100644 --- a/tests/auto/xmlpatternsvalidator/tst_xmlpatternsvalidator.cpp +++ b/tests/auto/xmlpatternsvalidator/tst_xmlpatternsvalidator.cpp @@ -216,6 +216,12 @@ void tst_XmlPatternsValidator::xsdSupport_data() const << 0 << (QStringList() << QLatin1String("files/complex-type-including-anonymous-type.xsd")) << QString(); + + QTest::newRow("QTBUG-11559 A schema and instance with a dateTime containing microseconds") + << 0 + << (QStringList() << QLatin1String("files/dateTime-with-microseconds.xml") + << QLatin1String("files/dateTime-with-microseconds.xsd")) + << QString(); } QTEST_MAIN(tst_XmlPatternsValidator) |