OSDN Git Service

benchmark QCryptographicHash with more chunks
authorIvailo Monev <xakepa10@laimg.moc>
Mon, 8 Jul 2019 16:22:56 +0000 (16:22 +0000)
committerIvailo Monev <xakepa10@laimg.moc>
Mon, 8 Jul 2019 16:22:56 +0000 (16:22 +0000)
Signed-off-by: Ivailo Monev <xakepa10@laimg.moc>
tests/benchmarks/core/tools/qcryptographichash/main.cpp

index 69f6b9f..b8147b2 100644 (file)
@@ -60,9 +60,10 @@ private slots:
 void tst_qcryptographichash::append_data()
 {
     QTest::addColumn<int>("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()