aboutsummaryrefslogtreecommitdiffstats
path: root/doc/reference/items/convenience/autotestrunner.qdoc
blob: defb2814e161eb11d337e98069b80e0ca99b2c60 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
/****************************************************************************
**
** Copyright (C) 2017 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
** This file is part of Qbs.
**
** $QT_BEGIN_LICENSE:FDL$
** Commercial License Usage
** Licensees holding valid commercial Qt licenses may use this file in
** accordance with the commercial license agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and The Qt Company. For licensing terms
** and conditions see https://www.qt.io/terms-conditions. For further
** information use the contact form at https://www.qt.io/contact-us.
**
** GNU Free Documentation License Usage
** Alternatively, this file may be used under the terms of the GNU Free
** Documentation License version 1.3 as published by the Free Software
** Foundation and appearing in the file included in the packaging of
** this file. Please review the following information to ensure
** the GNU Free Documentation License version 1.3 requirements
** will be met: https://www.gnu.org/licenses/fdl-1.3.html.
** $QT_END_LICENSE$
**
****************************************************************************/
/*!
    \contentspage list-of-convenience-items.html
    \previouspage ApplicationExtension
    \nextpage CppApplication
    \qmltype AutotestRunner
    \inqmlmodule QbsConvenienceItems
    \ingroup list-of-items
    \keyword QML.AutotestRunner

    \brief Product that runs all autotests in the project.

    An AutotestRunner has a dependency on all \l{Product}{products} with the
    \l{Product::}{type} \c "autotest". Building the AutotestRunner product
    will then run the respective executables. The \l{Product::}{builtByDefault}
    property is set to \c false by default, so running the autotests
    has to be explicitly requested. The default name of the product is
    \c "autotest-runner".

    To use this feature:

    \list 1
        \li Attach the \c "autotest" type to your autotests:
            \code
            CppApplication {
                name: "tst_mytest"
                type: ["application", "autotest"]
                // ...
            }
            \endcode
        \li Instantiate exactly one AutotestRunner in your project, typically at
            the top level:
            \code
            Project {
                // ...
                AutotestRunner { }
                // ...
            }
            \endcode
        \li Trigger the autotest execution by building the product:
            \code
            qbs build -p autotest-runner
            \endcode
    \endlist
*/

/*!
    \qmlproperty stringList AutotestRunner::arguments

    The list of arguments to invoke the autotest with.
    A test can override this by setting the \l{autotest::arguments}{arguments} property
    of the \l autotest module.

    \defaultvalue \c []
*/

/*!
    \qmlproperty stringList AutotestRunner::auxiliaryInputs

    This property can contain arbitrary file tags. The AutotestRunner will get dependencies
    on all products whose type matches at least one of these tags, and invocation of the
    test executables will happen only after all of the respective artifacts have been built.
    Set this property if your test executables have run-time dependencies on other products.

    \nodefaultvalue
    \since Qbs 1.12
*/

/*!
    \qmlproperty stringList AutotestRunner::environment

    A list of environment variables that are added to the run environment.
    They are provided as a list of strings in the form \c "varName=value".

    \defaultvalue DYLD_LIBRARY_PATH, DYLD_FRAMEWORK_PATH, and DYLD_ROOT_PATH
    are set on macOS, or an empty list for other platforms.
*/

/*!
    \qmlproperty bool AutotestRunner::limitToSubProject

    By default, only those autotests are considered that are in the same sub-project that
    AutotestRunner was instantiated in. If you want to run all autotests regardless
    of their location in the project hierarchy, set this property to \c false.

    \defaultvalue \c true
*/

/*!
    \qmlproperty string AutotestRunner::workingDir

    If this property is set, it will be the working directory for all invoked test executables.
    Otherwise, the working directory will the the parent directory of the respective executable.
    A test can override this by setting the \l{autotest::workingDir}{workingDir} property
    of the \l autotest module.

    \nodefaultvalue
    \since Qbs 1.12
*/

/*!
    \qmlproperty stringList AutotestRunner::wrapper

    Wrapper binary and its arguments for wrapping autotest calls.
    This is useful for tools like Valgrind and alike.

    \defaultvalue empty
*/