Skip packet capacity test when built in debug mode, as it triggers an assertion

This commit is contained in:
Dale Glass 2024-06-02 10:49:17 +02:00
parent 09e5a60c8b
commit b1aa801714

View file

@ -92,6 +92,9 @@ void PacketTests::readTest() {
}
void PacketTests::writePastCapacityTest() {
#ifndef QT_NO_DEBUG
QSKIP("This test triggers an assertion when built in debug mode");
#else
auto packet = NLPacket::create(PacketType::Unknown);
auto size = packet->getPayloadCapacity();
@ -116,6 +119,7 @@ void PacketTests::writePastCapacityTest() {
// NLPacket::write() shouldn't allow the caller to write if no space is left
QCOMPARE(packet->getPayloadSize(), size);
#endif
}
void PacketTests::primitiveTest() {