From f935b98b20b7ed2232083567164247a146c84236 Mon Sep 17 00:00:00 2001 From: Jason McDonald Date: Fri, 28 Oct 2011 17:13:26 +1000 Subject: [PATCH] Remove debugging code from QPathClipper autotest. Any test diagnostics that are useful should be part of the regular test output, as the CI system cannot switch on commented-out code when there is a test failure. Change-Id: I36c0624cccf70853a697a2395259b387fa334134 Reviewed-by: Rohan McGovern --- .../qpathclipper/tst_qpathclipper.cpp | 21 ------------------- 1 file changed, 21 deletions(-) diff --git a/tests/auto/gui/painting/qpathclipper/tst_qpathclipper.cpp b/tests/auto/gui/painting/qpathclipper/tst_qpathclipper.cpp index 6acaf5e5c3..1fa279dbc7 100644 --- a/tests/auto/gui/painting/qpathclipper/tst_qpathclipper.cpp +++ b/tests/auto/gui/painting/qpathclipper/tst_qpathclipper.cpp @@ -513,27 +513,6 @@ void tst_QPathClipper::clipTest(int subjectIndex, int clipIndex, QPathClipper::O op == QPathClipper::BoolOr ? "or" : "sub"; sprintf(str, "Expected: %d, actual: %d, subject: %d, clip: %d, op: %s\n", int(expected), int(inResult), subjectIndex, clipIndex, opStr); - - // debugging -#if 0 - QRect rect = bounds.toAlignedRect(); - - QPainter p(&img); - p.scale(scale, scale); - p.translate(-bounds.topLeft()); - - p.setPen(Qt::NoPen); - p.setBrush(QColor(0x700ff00)); - p.drawPath(result); - - p.setPen(Qt::blue); - p.drawPoint(point); - p.end(); - - char str2[256]; - sprintf(str2, "fail-%d-%d-%s.png", subjectIndex, clipIndex, opStr); - img.save(str2); -#endif QFAIL(str); } }