Merge pull request #993 from daleglass-overte/skip-capacity-test-in-debug

Skip packet capacity test when built in debug mode, as it triggers an assertion
This commit is contained in:
Dale Glass 2024-06-03 23:56:16 +02:00 committed by GitHub
commit 53de22fd00
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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() {