summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorThiago Macieira <thiago.macieira@intel.com>2020-12-07 09:14:17 -0800
committerQt Cherry-pick Bot <cherrypick_bot@qt-project.org>2020-12-08 01:39:51 +0000
commitc73b8e31d01865ef664386c668b243acd100220e (patch)
tree3efc66ae1f50ebd411f05b2df41b65bff45ea451 /tests
parentcf797c611d0e021e6ddae95f8ec24fb1638d04e4 (diff)
tst_QCborValue: adjust the size of the minimum string that won't fit
I don't know which of the previous commits caused this: as far as I can tell, this test should never have passed. Change-Id: I55083c2909f64a1f8868fffd164e7e8c24eec1f8 Reviewed-by: Volker Hilsheimer <volker.hilsheimer@qt.io> (cherry picked from commit 3c88728b5367f9705a8ff6f62fa66d9f46880084) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
Diffstat (limited to 'tests')
-rw-r--r--tests/auto/corelib/serialization/qcborvalue/tst_qcborvalue.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/auto/corelib/serialization/qcborvalue/tst_qcborvalue.cpp b/tests/auto/corelib/serialization/qcborvalue/tst_qcborvalue.cpp
index 0a780d3e46..533fb1c8aa 100644
--- a/tests/auto/corelib/serialization/qcborvalue/tst_qcborvalue.cpp
+++ b/tests/auto/corelib/serialization/qcborvalue/tst_qcborvalue.cpp
@@ -2159,7 +2159,9 @@ void tst_QCborValue::extendedTypeValidation()
void tst_QCborValue::hugeDeviceValidation_data()
{
- addValidationHugeDevice(MaxByteArraySize + 1, MaxStringSize + 1);
+ // because QCborValue will attempt to retain the original string in UTF-8,
+ // the size which it can't store is actually the byte array size
+ addValidationHugeDevice(MaxByteArraySize + 1, MaxByteArraySize + 1);
}
void tst_QCborValue::hugeDeviceValidation()