summaryrefslogtreecommitdiffstats
path: root/tests/auto/printsupport/kernel
diff options
context:
space:
mode:
authorEskil Abrahamsen Blomfeldt <eskil.abrahamsen-blomfeldt@nokia.com>2012-09-10 14:10:41 +0200
committerQt by Nokia <qt-info@nokia.com>2012-09-11 09:35:28 +0200
commit014ae2ad04cb0d42b95fa19ff3c007591256d3d4 (patch)
tree96d93443ed8fa7e5888fdb4c086ae6d00f959831 /tests/auto/printsupport/kernel
parent260da7a832182698c4ca872c4634fbab02c4880c (diff)
Avoid duplicate setPen() in PDF when reusing QPrinter
The simplePen property was not reset when reusing the QPrinter, thus we would output two identical setPen() commands in the PDF making the autotest that compares the results fail. Task-number: QTBUG-27171 Change-Id: I601042ec59e45ef72a56f230f6112a91a259b4a5 Reviewed-by: Qt Doc Bot <qt_docbot@qt-project.org> Reviewed-by: Jiang Jiang <jiang.jiang@nokia.com> Reviewed-by: Lars Knoll <lars.knoll@nokia.com>
Diffstat (limited to 'tests/auto/printsupport/kernel')
-rw-r--r--tests/auto/printsupport/kernel/qprinter/tst_qprinter.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/tests/auto/printsupport/kernel/qprinter/tst_qprinter.cpp b/tests/auto/printsupport/kernel/qprinter/tst_qprinter.cpp
index 4b4756bd5e..ca7fd4f7af 100644
--- a/tests/auto/printsupport/kernel/qprinter/tst_qprinter.cpp
+++ b/tests/auto/printsupport/kernel/qprinter/tst_qprinter.cpp
@@ -985,9 +985,6 @@ void tst_QPrinter::taskQTBUG4497_reusePrinterOnDifferentFiles()
QFile file2("out2.ps");
QVERIFY(file2.open(QIODevice::ReadOnly));
-#ifndef Q_OS_WIN
- QEXPECT_FAIL("", "QTBUG-22562, QTBUG-22296", Abort);
-#endif
QCOMPARE(file1.readAll(), file2.readAll());
}