The branch, master has been updated
via 148cf615855a8ac46e9106db294dea7f79886076 (commit)
via 6cb002610b70f3034b5d2b2d97061648cde38c18 (commit)
from fd4e86be9ec88ffbe4deb12339ca42575d69ca68 (commit)
- Log -----------------------------------------------------------------
commit 148cf615855a8ac46e9106db294dea7f79886076
Author: Kacper MichajÅow <[email protected]>
AuthorDate: Tue Nov 18 15:42:55 2025 +0100
Commit: Kacper MichajÅow <[email protected]>
CommitDate: Mon Nov 24 02:47:08 2025 +0000
fate: add missing options in config template
Fixes: f01c77157789b8e3a59ed2c9646faf8299e41641
Fixes: 523d688c2b7d5bb535bc203a2c3705d199ddf13d
Signed-off-by: Kacper MichajÅow <[email protected]>
diff --git a/doc/fate_config.sh.template b/doc/fate_config.sh.template
index 36b554b948..73031f54e2 100644
--- a/doc/fate_config.sh.template
+++ b/doc/fate_config.sh.template
@@ -12,16 +12,21 @@ ignore_tests=
# the following are optional and map to configure options
arch=
cpu=
+toolchain=
cross_prefix=
as=
cc=
+cxx=
ld=
+nm=
target_os=
sysroot=
target_exec=
target_path=
target_samples=
extra_cflags=
+extra_cxxflags=
+extra_objcflags=
extra_ldflags=
extra_libs=
extra_conf= # extra configure options not covered above
commit 6cb002610b70f3034b5d2b2d97061648cde38c18
Author: Kacper MichajÅow <[email protected]>
AuthorDate: Mon Oct 27 04:33:37 2025 +0100
Commit: Kacper MichajÅow <[email protected]>
CommitDate: Mon Nov 24 02:47:08 2025 +0000
fate: add skip_clean option
This is useful if one wants to inspect build artifacts after running
fate.sh script.
Signed-off-by: Kacper MichajÅow <[email protected]>
diff --git a/doc/fate_config.sh.template b/doc/fate_config.sh.template
index 4ff8629d44..36b554b948 100644
--- a/doc/fate_config.sh.template
+++ b/doc/fate_config.sh.template
@@ -6,6 +6,7 @@ workdir= # directory in which
to do all the work
#fate_recv="ssh -T [email protected]" # command to submit report
comment= # optional description
build_only= # set to "yes" for a compile-only instance that skips tests
+skip_clean= # set to "yes" to preserve build/install directories
ignore_tests=
# the following are optional and map to configure options
diff --git a/tests/fate.sh b/tests/fate.sh
index 2d6313820f..a3195ccdf5 100755
--- a/tests/fate.sh
+++ b/tests/fate.sh
@@ -95,7 +95,7 @@ fate()(
)
clean(){
- rm -rf ${build} ${inst}
+ test "$skip_clean" = "yes" || rm -rf ${build} ${inst}
}
report(){
-----------------------------------------------------------------------
Summary of changes:
doc/fate_config.sh.template | 6 ++++++
tests/fate.sh | 2 +-
2 files changed, 7 insertions(+), 1 deletion(-)
hooks/post-receive
--
_______________________________________________
ffmpeg-cvslog mailing list -- [email protected]
To unsubscribe send an email to [email protected]