aboutsummaryrefslogtreecommitdiffstats
path: root/tests/manual/qmlplugindump/README
diff options
context:
space:
mode:
authorKai Koehne <kai.koehne@qt.io>2018-09-27 16:18:31 +0200
committerKai Koehne <kai.koehne@qt.io>2018-10-09 07:50:30 +0000
commit9aa954e20e9fd02581d7334bda32deeb09752e66 (patch)
tree5e34ba6236b287b237d459cd7c5705ee83eb9458 /tests/manual/qmlplugindump/README
parentc481ce0789ff923637dc483c6b904a54b0c44852 (diff)
Merge qmlplugindump tests
Move all qmlplugindump test cases to the autotest one. Change-Id: If7b5ea119c862507686c11f4dafaa4648d4808f5 Reviewed-by: Marco Benelli <marco.benelli@qt.io>
Diffstat (limited to 'tests/manual/qmlplugindump/README')
-rw-r--r--tests/manual/qmlplugindump/README42
1 files changed, 0 insertions, 42 deletions
diff --git a/tests/manual/qmlplugindump/README b/tests/manual/qmlplugindump/README
deleted file mode 100644
index 537afbba6e..0000000000
--- a/tests/manual/qmlplugindump/README
+++ /dev/null
@@ -1,42 +0,0 @@
-Tests for qmlplugindump
------------------------
-
-The test are executed by compiling a series of sample projects and
-running qmlplugindump on them, checking the generated plugin.qmltypes
-files. Each test, except `builtins`, need a sample project in order
-to be executed. A test is defined by:
-
- - test name
- - sample project name
- - sample project version
- - expected results
-
-That means that different tests can use the same sample project, but
-it is not possible to define a test that use more than one sample.
-Test definitions are stored in the folder `definitions` as json files;
-the file name is the test name, tests are executed in lexicographical
-order on their names, and the contents defines the other properties in
-the following format:
-
- {
- "project": <project-name>,
- "version": <version>,
- "expected": [<regexp-patterns>*],
- }
-
-where _project-name_, _version_, and _regexp-patterns_ are strings.
-
-The first two parameters are used to invoke qmlplugindump:
-
- qmlplugindump -nonrelocatable <uri> <version> <path>
-
-where:
-
- <uri> = tests.dumper.<project-name>
- <path> = <test-root>
-
-therefore, it is important that the sample projects resides in
-a subdirectory of `tests/dumper` named as the project itself.
-
-The last parameter is a list of regular expression patterns that
-must match the `plugin.qmltypes` produced by qmlplugindump.