aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorMartin Storsjö <martin@martin.st>2023-11-27 14:02:58 +0200
committerMartin Storsjö <martin@martin.st>2023-12-19 13:34:23 +0200
commitd0e215fffcb4cf0fb9876bf5722dacdee71580be (patch)
tree5db3a016ac318eb4d1607aa53628da7686f3c383 /doc
parent7d7ba2175c9e139b594b3cdf686c29bc116154a8 (diff)
downloadffmpeg-d0e215fffcb4cf0fb9876bf5722dacdee71580be.tar.gz
fate: Allow overriding what targets to make for running the tests
This can be useful if doing testing of uncommon CPU extensions by running tests with QEMU (by configuring with e.g. "target_exec=qemu-aarch64"), by only running the checkasm tests, to get a reasonable test coverage without excessive test runtime. For such a config, setting fate_targets="fate-checkasm fate-cpu" can be a good tradeoff. Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'doc')
-rw-r--r--doc/fate_config.sh.template2
1 files changed, 2 insertions, 0 deletions
diff --git a/doc/fate_config.sh.template b/doc/fate_config.sh.template
index ab1bda45e4..06bb79a832 100644
--- a/doc/fate_config.sh.template
+++ b/doc/fate_config.sh.template
@@ -31,3 +31,5 @@ makeopts= # extra options passed to 'make'
# defaulting to makeopts above if this is not set
#tar= # command to create a tar archive from its arguments on stdout,
# defaults to 'tar c'
+#fate_targets= # targets to make when running fate; defaults to "fate",
+ # can be set to run a subset of tests, e.g. "fate-checkasm".