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 <rohan.mcgovern@nokia.com>
This commit is contained in:
Jason McDonald 2011-10-28 17:13:26 +10:00 committed by Qt by Nokia
parent 5029a99118
commit f935b98b20

View 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);
}
}