From: Ivailo Monev Date: Mon, 8 Jul 2019 16:22:56 +0000 (+0000) Subject: benchmark QCryptographicHash with more chunks X-Git-Tag: 4.12.0~5558 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=c682aa559cbb551ec6cfe6342043260288d2b2e9;p=kde%2FKatie.git benchmark QCryptographicHash with more chunks Signed-off-by: Ivailo Monev --- diff --git a/tests/benchmarks/core/tools/qcryptographichash/main.cpp b/tests/benchmarks/core/tools/qcryptographichash/main.cpp index 69f6b9f8b..b8147b274 100644 --- a/tests/benchmarks/core/tools/qcryptographichash/main.cpp +++ b/tests/benchmarks/core/tools/qcryptographichash/main.cpp @@ -60,9 +60,10 @@ private slots: void tst_qcryptographichash::append_data() { QTest::addColumn("size"); - QTest::newRow("1") << int(1); - QTest::newRow("10") << int(10); - QTest::newRow("100") << int(100); + QTest::newRow("10") << int(10); + QTest::newRow("100") << int(100); + QTest::newRow("250") << int(250); + QTest::newRow("500") << int(500); } void tst_qcryptographichash::append()