summaryrefslogtreecommitdiff
path: root/meson_options.txt
diff options
context:
space:
mode:
authorRhys Perry <pendingchaos02@gmail.com>2020-01-22 19:58:27 +0000
committerMarge Bot <eric+marge@anholt.net>2020-07-30 16:13:08 +0000
commite6366f9094326a2841058678174289827f504905 (patch)
tree0461ebd797507293d67c43d65819d9a8fbef0e39 /meson_options.txt
parentdd155aef4404994ffc36a63f14fb2ba3f48c0ae5 (diff)
aco: add framework for unit testing
And add some "tests" to test and document currently unused features of the framework. Signed-off-by: Rhys Perry <pendingchaos02@gmail.com> Acked-by: Samuel Pitoiset <samuel.pitoiset@gmail.com> Acked-by: Daniel Schürmann <daniel@schuermann.dev> Acked-by: Timur Kristóf <timur.kristof@gmail.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/3521>
Diffstat (limited to 'meson_options.txt')
-rw-r--r--meson_options.txt8
1 files changed, 7 insertions, 1 deletions
diff --git a/meson_options.txt b/meson_options.txt
index 913dd497449..63290eba415 100644
--- a/meson_options.txt
+++ b/meson_options.txt
@@ -286,7 +286,13 @@ option(
'build-tests',
type : 'boolean',
value : false,
- description : 'Build unit tests. Currently this will build *all* unit tests, which may build more than expected.'
+ description : 'Build unit tests. Currently this will build *all* unit tests except the ACO tests, which may build more than expected.'
+)
+option(
+ 'build-aco-tests',
+ type : 'boolean',
+ value : false,
+ description : 'Build ACO tests. These do not require an AMD GPU.'
)
option(
'install-intel-gpu-tests',