From a4797af37c766cd9bf758c00b640904829b06716 Mon Sep 17 00:00:00 2001 From: Robin Burchell Date: Thu, 4 May 2017 11:30:13 +0200 Subject: Ensure all tests have a simple descriptive text Change-Id: I6df853ccac46b770de1b0a1fcafcfd764422f250 Reviewed-by: Gunnar Sletta --- benchmarks/auto/animations/comparison/moving-images-animations.qml | 2 ++ benchmarks/auto/animations/comparison/moving-images-animators.qml | 2 ++ benchmarks/auto/animations/comparison/moving-images-script.qml | 2 ++ benchmarks/auto/animations/comparison/moving-images-simple.qml | 2 ++ benchmarks/auto/creation/controls/delegates_buttoncontrol2.qml | 1 + benchmarks/auto/creation/controls/delegates_labelcontrol2.qml | 1 + benchmarks/auto/creation/layouts/delegates_column.qml | 1 + benchmarks/auto/creation/layouts/delegates_columnlayout.qml | 1 + benchmarks/auto/creation/layouts/delegates_flow.qml | 1 + benchmarks/auto/creation/layouts/delegates_grid.qml | 1 + benchmarks/auto/creation/layouts/delegates_gridlayout.qml | 1 + benchmarks/auto/creation/layouts/delegates_row.qml | 1 + benchmarks/auto/creation/layouts/delegates_rowlayout.qml | 1 + benchmarks/auto/creation/quick.text/delegates_longtext.qml | 1 + benchmarks/auto/creation/quick.text/delegates_longtext_arabic.qml | 1 + benchmarks/auto/creation/quick.text/delegates_longtext_chinese.qml | 2 ++ benchmarks/auto/creation/quick.text/delegates_longtext_hindi.qml | 1 + benchmarks/auto/creation/quick.text/delegates_text.qml | 1 + benchmarks/auto/creation/quick.text/delegates_text_arabic.qml | 1 + benchmarks/auto/creation/quick.text/delegates_text_chinese.qml | 2 ++ benchmarks/auto/creation/quick.text/delegates_text_decoration_bold.qml | 1 + .../auto/creation/quick.text/delegates_text_decoration_italic.qml | 1 + .../auto/creation/quick.text/delegates_text_decoration_strikeout.qml | 1 + .../auto/creation/quick.text/delegates_text_decoration_underline.qml | 1 + benchmarks/auto/creation/quick.text/delegates_text_hindi.qml | 1 + benchmarks/auto/creation/quick.text/delegates_text_nativerendering.qml | 1 + benchmarks/auto/creation/quick.text/delegates_text_plain.qml | 1 + benchmarks/auto/creation/quick.text/delegates_text_richtext.qml | 1 + benchmarks/auto/creation/quick.text/delegates_text_styled.qml | 1 + benchmarks/auto/creation/quick.text/delegates_textedit.qml | 1 + benchmarks/auto/creation/quick.text/delegates_textinput.qml | 1 + benchmarks/auto/creation/quick.validators/delegates_doublevalidator.qml | 1 + benchmarks/auto/creation/quick.validators/delegates_intvalidator.qml | 1 + benchmarks/auto/creation/quick.validators/delegates_regexpvalidator.qml | 1 + benchmarks/auto/js/fib10.qml | 1 + benchmarks/auto/js/sum10k.qml | 1 + 36 files changed, 42 insertions(+) (limited to 'benchmarks') diff --git a/benchmarks/auto/animations/comparison/moving-images-animations.qml b/benchmarks/auto/animations/comparison/moving-images-animations.qml index c55d52d..17ff34a 100644 --- a/benchmarks/auto/animations/comparison/moving-images-animations.qml +++ b/benchmarks/auto/animations/comparison/moving-images-animations.qml @@ -1,6 +1,8 @@ import QtQuick 2.2 import QmlBench 1.0 +// Move images around using Animation types, to be compared with a number of +// other similar ways to move them around. Benchmark { id: root; diff --git a/benchmarks/auto/animations/comparison/moving-images-animators.qml b/benchmarks/auto/animations/comparison/moving-images-animators.qml index c7e267e..c620d62 100644 --- a/benchmarks/auto/animations/comparison/moving-images-animators.qml +++ b/benchmarks/auto/animations/comparison/moving-images-animators.qml @@ -1,6 +1,8 @@ import QtQuick 2.2 import QmlBench 1.0 +// Move images around using Animator types, to be compared with a number of +// other similar ways to move them around. Benchmark { id: root; diff --git a/benchmarks/auto/animations/comparison/moving-images-script.qml b/benchmarks/auto/animations/comparison/moving-images-script.qml index 9315752..2ea08fa 100644 --- a/benchmarks/auto/animations/comparison/moving-images-script.qml +++ b/benchmarks/auto/animations/comparison/moving-images-script.qml @@ -1,6 +1,8 @@ import QtQuick 2.2 import QmlBench 1.0 +// Move images around using a property binding, to be compared with a number of +// other similar ways to move them around. Benchmark { id: root; diff --git a/benchmarks/auto/animations/comparison/moving-images-simple.qml b/benchmarks/auto/animations/comparison/moving-images-simple.qml index 8dfba8d..56fa2c3 100644 --- a/benchmarks/auto/animations/comparison/moving-images-simple.qml +++ b/benchmarks/auto/animations/comparison/moving-images-simple.qml @@ -1,6 +1,8 @@ import QtQuick 2.2 import QmlBench 1.0 +// Move images around using a global property binding, to be compared with a +// number of other similar ways to move them around. Benchmark { id: root; diff --git a/benchmarks/auto/creation/controls/delegates_buttoncontrol2.qml b/benchmarks/auto/creation/controls/delegates_buttoncontrol2.qml index cf32484..c1c5f71 100644 --- a/benchmarks/auto/creation/controls/delegates_buttoncontrol2.qml +++ b/benchmarks/auto/creation/controls/delegates_buttoncontrol2.qml @@ -2,6 +2,7 @@ import QtQuick 2.0 import QmlBench 1.0 import QtQuick.Controls 2.0 +// Tests the creation of QQC2's Button type. CreationBenchmark { id: root; count: 20; diff --git a/benchmarks/auto/creation/controls/delegates_labelcontrol2.qml b/benchmarks/auto/creation/controls/delegates_labelcontrol2.qml index 4ab8401..befd4f1 100644 --- a/benchmarks/auto/creation/controls/delegates_labelcontrol2.qml +++ b/benchmarks/auto/creation/controls/delegates_labelcontrol2.qml @@ -2,6 +2,7 @@ import QtQuick 2.0 import QmlBench 1.0 import QtQuick.Controls 2.0 +// Tests the creation of QQC2's Label type. CreationBenchmark { id: root; count: 20; diff --git a/benchmarks/auto/creation/layouts/delegates_column.qml b/benchmarks/auto/creation/layouts/delegates_column.qml index 0f9349c..e9b9d82 100644 --- a/benchmarks/auto/creation/layouts/delegates_column.qml +++ b/benchmarks/auto/creation/layouts/delegates_column.qml @@ -1,6 +1,7 @@ import QtQuick 2.0 import QmlBench 1.0 +// Tests the creation of a Column, to be compared with ColumnLayout. CreationBenchmark { id: root; count: 20; diff --git a/benchmarks/auto/creation/layouts/delegates_columnlayout.qml b/benchmarks/auto/creation/layouts/delegates_columnlayout.qml index 5324b67..bb941a3 100644 --- a/benchmarks/auto/creation/layouts/delegates_columnlayout.qml +++ b/benchmarks/auto/creation/layouts/delegates_columnlayout.qml @@ -2,6 +2,7 @@ import QtQuick 2.0 import QmlBench 1.0 import QtQuick.Layouts 1.0 +// Tests the creation of a ColumnLayout, to be compared with Column. CreationBenchmark { id: root; count: 20; diff --git a/benchmarks/auto/creation/layouts/delegates_flow.qml b/benchmarks/auto/creation/layouts/delegates_flow.qml index db44caf..974c08a 100644 --- a/benchmarks/auto/creation/layouts/delegates_flow.qml +++ b/benchmarks/auto/creation/layouts/delegates_flow.qml @@ -1,6 +1,7 @@ import QtQuick 2.0 import QmlBench 1.0 +// Tests the creation of a Flow layout CreationBenchmark { id: root; count: 20; diff --git a/benchmarks/auto/creation/layouts/delegates_grid.qml b/benchmarks/auto/creation/layouts/delegates_grid.qml index 3c10452..fe40ccd 100644 --- a/benchmarks/auto/creation/layouts/delegates_grid.qml +++ b/benchmarks/auto/creation/layouts/delegates_grid.qml @@ -1,6 +1,7 @@ import QtQuick 2.0 import QmlBench 1.0 +// Tests the creation of a Grid, to be compared with GridLayout CreationBenchmark { id: root; count: 20; diff --git a/benchmarks/auto/creation/layouts/delegates_gridlayout.qml b/benchmarks/auto/creation/layouts/delegates_gridlayout.qml index 27d1498..8cdd48a 100644 --- a/benchmarks/auto/creation/layouts/delegates_gridlayout.qml +++ b/benchmarks/auto/creation/layouts/delegates_gridlayout.qml @@ -2,6 +2,7 @@ import QtQuick 2.0 import QmlBench 1.0 import QtQuick.Layouts 1.0 +// Tests the creation of GridLayout, to be compared with Grid CreationBenchmark { id: root; count: 20; diff --git a/benchmarks/auto/creation/layouts/delegates_row.qml b/benchmarks/auto/creation/layouts/delegates_row.qml index 9b74e2c..1734101 100644 --- a/benchmarks/auto/creation/layouts/delegates_row.qml +++ b/benchmarks/auto/creation/layouts/delegates_row.qml @@ -1,6 +1,7 @@ import QtQuick 2.0 import QmlBench 1.0 +// Tests the creation of Row, to be compared with RowLayout CreationBenchmark { id: root; count: 20; diff --git a/benchmarks/auto/creation/layouts/delegates_rowlayout.qml b/benchmarks/auto/creation/layouts/delegates_rowlayout.qml index 8f74a74..b35496a 100644 --- a/benchmarks/auto/creation/layouts/delegates_rowlayout.qml +++ b/benchmarks/auto/creation/layouts/delegates_rowlayout.qml @@ -2,6 +2,7 @@ import QtQuick 2.0 import QmlBench 1.0 import QtQuick.Layouts 1.0 +// Tests the creation of RowLayout, to be compared with Row CreationBenchmark { id: root; count: 20; diff --git a/benchmarks/auto/creation/quick.text/delegates_longtext.qml b/benchmarks/auto/creation/quick.text/delegates_longtext.qml index 487a450..0bf13ce 100644 --- a/benchmarks/auto/creation/quick.text/delegates_longtext.qml +++ b/benchmarks/auto/creation/quick.text/delegates_longtext.qml @@ -1,6 +1,7 @@ import QtQuick 2.0 import QmlBench 1.0 +// Tests the creation of Text with a long string of latin1 text. CreationBenchmark { id: root; count: 20; diff --git a/benchmarks/auto/creation/quick.text/delegates_longtext_arabic.qml b/benchmarks/auto/creation/quick.text/delegates_longtext_arabic.qml index 9a22083..a3d50cf 100644 --- a/benchmarks/auto/creation/quick.text/delegates_longtext_arabic.qml +++ b/benchmarks/auto/creation/quick.text/delegates_longtext_arabic.qml @@ -1,6 +1,7 @@ import QtQuick 2.0 import QmlBench 1.0 +// Tests the creation of Text with a long string of arabic text. CreationBenchmark { id: root; count: 20; diff --git a/benchmarks/auto/creation/quick.text/delegates_longtext_chinese.qml b/benchmarks/auto/creation/quick.text/delegates_longtext_chinese.qml index 1f1fac3..dc803f9 100644 --- a/benchmarks/auto/creation/quick.text/delegates_longtext_chinese.qml +++ b/benchmarks/auto/creation/quick.text/delegates_longtext_chinese.qml @@ -1,6 +1,8 @@ import QtQuick 2.0 import QmlBench 1.0 +// Tests the creation of Text with a long string of chinese text. +// This is similar to longtext.qml, but it has a lot more glyphs. CreationBenchmark { id: root; count: 20; diff --git a/benchmarks/auto/creation/quick.text/delegates_longtext_hindi.qml b/benchmarks/auto/creation/quick.text/delegates_longtext_hindi.qml index ab414cb..9158bc7 100644 --- a/benchmarks/auto/creation/quick.text/delegates_longtext_hindi.qml +++ b/benchmarks/auto/creation/quick.text/delegates_longtext_hindi.qml @@ -1,6 +1,7 @@ import QtQuick 2.0 import QmlBench 1.0 +// Tests the creation of Text with a long string of hindi text. CreationBenchmark { id: root; count: 20; diff --git a/benchmarks/auto/creation/quick.text/delegates_text.qml b/benchmarks/auto/creation/quick.text/delegates_text.qml index 8188fbb..7e092a5 100644 --- a/benchmarks/auto/creation/quick.text/delegates_text.qml +++ b/benchmarks/auto/creation/quick.text/delegates_text.qml @@ -1,6 +1,7 @@ import QtQuick 2.0 import QmlBench 1.0 +// Tests the creation of Text with a short string of text CreationBenchmark { id: root; count: 50; diff --git a/benchmarks/auto/creation/quick.text/delegates_text_arabic.qml b/benchmarks/auto/creation/quick.text/delegates_text_arabic.qml index c077a9a..27a4503 100644 --- a/benchmarks/auto/creation/quick.text/delegates_text_arabic.qml +++ b/benchmarks/auto/creation/quick.text/delegates_text_arabic.qml @@ -1,6 +1,7 @@ import QtQuick 2.0 import QmlBench 1.0 +// Tests the creation of Text with a short string of arabic text CreationBenchmark { id: root; count: 50; diff --git a/benchmarks/auto/creation/quick.text/delegates_text_chinese.qml b/benchmarks/auto/creation/quick.text/delegates_text_chinese.qml index db71b25..a0f2d95 100644 --- a/benchmarks/auto/creation/quick.text/delegates_text_chinese.qml +++ b/benchmarks/auto/creation/quick.text/delegates_text_chinese.qml @@ -1,6 +1,8 @@ import QtQuick 2.0 import QmlBench 1.0 +// Tests the creation of Text with a short string of chinese text +// This is similar to delegates_text, except with more glyphs CreationBenchmark { id: root; count: 50; diff --git a/benchmarks/auto/creation/quick.text/delegates_text_decoration_bold.qml b/benchmarks/auto/creation/quick.text/delegates_text_decoration_bold.qml index 6a0f396..a70c43a 100644 --- a/benchmarks/auto/creation/quick.text/delegates_text_decoration_bold.qml +++ b/benchmarks/auto/creation/quick.text/delegates_text_decoration_bold.qml @@ -1,6 +1,7 @@ import QtQuick 2.0 import QmlBench 1.0 +// Tests the creation of Text with bold decoration CreationBenchmark { id: root; count: 50; diff --git a/benchmarks/auto/creation/quick.text/delegates_text_decoration_italic.qml b/benchmarks/auto/creation/quick.text/delegates_text_decoration_italic.qml index c7f059a..6673d2d 100644 --- a/benchmarks/auto/creation/quick.text/delegates_text_decoration_italic.qml +++ b/benchmarks/auto/creation/quick.text/delegates_text_decoration_italic.qml @@ -1,6 +1,7 @@ import QtQuick 2.0 import QmlBench 1.0 +// Tests the creation of Text with italic decoration CreationBenchmark { id: root; count: 50; diff --git a/benchmarks/auto/creation/quick.text/delegates_text_decoration_strikeout.qml b/benchmarks/auto/creation/quick.text/delegates_text_decoration_strikeout.qml index 74e56ad..d7e21c2 100644 --- a/benchmarks/auto/creation/quick.text/delegates_text_decoration_strikeout.qml +++ b/benchmarks/auto/creation/quick.text/delegates_text_decoration_strikeout.qml @@ -1,6 +1,7 @@ import QtQuick 2.0 import QmlBench 1.0 +// Tests the creation of Text with strikeout decoration CreationBenchmark { id: root; count: 50; diff --git a/benchmarks/auto/creation/quick.text/delegates_text_decoration_underline.qml b/benchmarks/auto/creation/quick.text/delegates_text_decoration_underline.qml index 00730e7..5010c32 100644 --- a/benchmarks/auto/creation/quick.text/delegates_text_decoration_underline.qml +++ b/benchmarks/auto/creation/quick.text/delegates_text_decoration_underline.qml @@ -1,6 +1,7 @@ import QtQuick 2.0 import QmlBench 1.0 +// Tests the creation of Text with underline decoration CreationBenchmark { id: root; count: 50; diff --git a/benchmarks/auto/creation/quick.text/delegates_text_hindi.qml b/benchmarks/auto/creation/quick.text/delegates_text_hindi.qml index c98cec3..190c473 100644 --- a/benchmarks/auto/creation/quick.text/delegates_text_hindi.qml +++ b/benchmarks/auto/creation/quick.text/delegates_text_hindi.qml @@ -1,6 +1,7 @@ import QtQuick 2.0 import QmlBench 1.0 +// Tests the creation of Text with a short piece of hindi text CreationBenchmark { id: root; count: 50; diff --git a/benchmarks/auto/creation/quick.text/delegates_text_nativerendering.qml b/benchmarks/auto/creation/quick.text/delegates_text_nativerendering.qml index 30406ee..bdbe4ae 100644 --- a/benchmarks/auto/creation/quick.text/delegates_text_nativerendering.qml +++ b/benchmarks/auto/creation/quick.text/delegates_text_nativerendering.qml @@ -1,6 +1,7 @@ import QtQuick 2.0 import QmlBench 1.0 +// Tests the creation of Text with native rendering enabled CreationBenchmark { id: root; count: 50; diff --git a/benchmarks/auto/creation/quick.text/delegates_text_plain.qml b/benchmarks/auto/creation/quick.text/delegates_text_plain.qml index cc91e7c..aef77db 100644 --- a/benchmarks/auto/creation/quick.text/delegates_text_plain.qml +++ b/benchmarks/auto/creation/quick.text/delegates_text_plain.qml @@ -1,6 +1,7 @@ import QtQuick 2.0 import QmlBench 1.0 +// Tests the creation of Text with plain formatting forced CreationBenchmark { id: root; count: 50; diff --git a/benchmarks/auto/creation/quick.text/delegates_text_richtext.qml b/benchmarks/auto/creation/quick.text/delegates_text_richtext.qml index a9691f0..7d21e86 100644 --- a/benchmarks/auto/creation/quick.text/delegates_text_richtext.qml +++ b/benchmarks/auto/creation/quick.text/delegates_text_richtext.qml @@ -1,6 +1,7 @@ import QtQuick 2.0 import QmlBench 1.0 +// Tests the creation of Text with rich formatting forced CreationBenchmark { id: root; count: 50; diff --git a/benchmarks/auto/creation/quick.text/delegates_text_styled.qml b/benchmarks/auto/creation/quick.text/delegates_text_styled.qml index 1ed2e5a..ccec424 100644 --- a/benchmarks/auto/creation/quick.text/delegates_text_styled.qml +++ b/benchmarks/auto/creation/quick.text/delegates_text_styled.qml @@ -1,6 +1,7 @@ import QtQuick 2.0 import QmlBench 1.0 +// Tests the creation of Text with styled formatting forced CreationBenchmark { id: root; count: 50; diff --git a/benchmarks/auto/creation/quick.text/delegates_textedit.qml b/benchmarks/auto/creation/quick.text/delegates_textedit.qml index 3fa3a16..a179e85 100644 --- a/benchmarks/auto/creation/quick.text/delegates_textedit.qml +++ b/benchmarks/auto/creation/quick.text/delegates_textedit.qml @@ -1,6 +1,7 @@ import QtQuick 2.0 import QmlBench 1.0 +// Tests the creation of TextEdit CreationBenchmark { id: root; count: 20; diff --git a/benchmarks/auto/creation/quick.text/delegates_textinput.qml b/benchmarks/auto/creation/quick.text/delegates_textinput.qml index 5eb42a7..2f03563 100644 --- a/benchmarks/auto/creation/quick.text/delegates_textinput.qml +++ b/benchmarks/auto/creation/quick.text/delegates_textinput.qml @@ -1,6 +1,7 @@ import QtQuick 2.0 import QmlBench 1.0 +// Tests the creation of TextInput CreationBenchmark { id: root; count: 20; diff --git a/benchmarks/auto/creation/quick.validators/delegates_doublevalidator.qml b/benchmarks/auto/creation/quick.validators/delegates_doublevalidator.qml index 445c0c9..4fb6f30 100644 --- a/benchmarks/auto/creation/quick.validators/delegates_doublevalidator.qml +++ b/benchmarks/auto/creation/quick.validators/delegates_doublevalidator.qml @@ -1,6 +1,7 @@ import QtQuick 2.0 import QmlBench 1.0 +// Tests the creation of DoubleValidator CreationBenchmark { id: root; count: 50; diff --git a/benchmarks/auto/creation/quick.validators/delegates_intvalidator.qml b/benchmarks/auto/creation/quick.validators/delegates_intvalidator.qml index bd5c8d3..f99040b 100644 --- a/benchmarks/auto/creation/quick.validators/delegates_intvalidator.qml +++ b/benchmarks/auto/creation/quick.validators/delegates_intvalidator.qml @@ -1,6 +1,7 @@ import QtQuick 2.0 import QmlBench 1.0 +// Tests the creation of IntValidator CreationBenchmark { id: root; count: 50; diff --git a/benchmarks/auto/creation/quick.validators/delegates_regexpvalidator.qml b/benchmarks/auto/creation/quick.validators/delegates_regexpvalidator.qml index 48ba756..b3b8d38 100644 --- a/benchmarks/auto/creation/quick.validators/delegates_regexpvalidator.qml +++ b/benchmarks/auto/creation/quick.validators/delegates_regexpvalidator.qml @@ -1,6 +1,7 @@ import QtQuick 2.0 import QmlBench 1.0 +// Tests the creation of RegExpValidator CreationBenchmark { id: root; count: 50; diff --git a/benchmarks/auto/js/fib10.qml b/benchmarks/auto/js/fib10.qml index b55a32d..7e0df4f 100644 --- a/benchmarks/auto/js/fib10.qml +++ b/benchmarks/auto/js/fib10.qml @@ -1,6 +1,7 @@ import QtQuick 2.0 import QmlBench 1.0 +// Tests the creation of Items with a recursive function binding CreationBenchmark { id: root; count: 50; diff --git a/benchmarks/auto/js/sum10k.qml b/benchmarks/auto/js/sum10k.qml index 151772a..0667945 100644 --- a/benchmarks/auto/js/sum10k.qml +++ b/benchmarks/auto/js/sum10k.qml @@ -1,6 +1,7 @@ import QtQuick 2.0 import QmlBench 1.0 +// Tests the creation of items with a non-recursive function binding CreationBenchmark { id: root; count: 50; -- cgit v1.2.3