aboutsummaryrefslogtreecommitdiffstats
path: root/benchmarks/auto/creation/quick.validators/delegates_regexpvalidator.qml
diff options
context:
space:
mode:
Diffstat (limited to 'benchmarks/auto/creation/quick.validators/delegates_regexpvalidator.qml')
-rw-r--r--benchmarks/auto/creation/quick.validators/delegates_regexpvalidator.qml15
1 files changed, 0 insertions, 15 deletions
diff --git a/benchmarks/auto/creation/quick.validators/delegates_regexpvalidator.qml b/benchmarks/auto/creation/quick.validators/delegates_regexpvalidator.qml
deleted file mode 100644
index b3b8d38..0000000
--- a/benchmarks/auto/creation/quick.validators/delegates_regexpvalidator.qml
+++ /dev/null
@@ -1,15 +0,0 @@
-import QtQuick 2.0
-import QmlBench 1.0
-
-// Tests the creation of RegExpValidator
-CreationBenchmark {
- id: root;
- count: 50;
- staticCount: 2500;
- delegate: Item {
- property RegExpValidator validator: RegExpValidator {
- regExp: /.*/
- }
- }
-}
-