mirror of
https://thingvellir.net/git/overte
synced 2025-03-27 23:52:03 +01:00
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:
commit
53de22fd00
1 changed files with 4 additions and 0 deletions
|
@ -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() {
|
||||
|
|
Loading…
Reference in a new issue