Remove debugging code from QPathClipper autotest.
authorJason McDonald <jason.mcdonald@nokia.com>
Fri, 28 Oct 2011 07:13:26 +0000 (17:13 +1000)
committerQt by Nokia <qt-info@nokia.com>
Mon, 31 Oct 2011 01:34:30 +0000 (02:34 +0100)
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 <rohan.mcgovern@nokia.com>
tests/auto/gui/painting/qpathclipper/tst_qpathclipper.cpp

index 6acaf5e..1fa279d 100644 (file)
@@ -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);
         }
     }