This is an automated email from the git hooks/post-receive script. Git pushed a commit to branch master in repository ffmpeg.
commit f947bc9c1532e7bcc95da11d9574cac3543490b3 Author: Niklas Haas <[email protected]> AuthorDate: Wed Jun 10 18:43:56 2026 +0200 Commit: Niklas Haas <[email protected]> CommitDate: Thu Jun 25 01:20:48 2026 +0200 tests/fate/swscale: skip fate-sws-uops-macros without int128 This is very slow otherwise (10x slower than with native int128). Developers can still manually run it if they need to, but we should exclude it from the default FATE target. Signed-off-by: Niklas Haas <[email protected]> --- tests/fate/libswscale.mak | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/tests/fate/libswscale.mak b/tests/fate/libswscale.mak index 8f6616dd8e..622f88041c 100644 --- a/tests/fate/libswscale.mak +++ b/tests/fate/libswscale.mak @@ -42,18 +42,24 @@ fate-sws-unstable: libswscale/tests/swscale$(EXESUF) fate-sws-unstable: CMD = run libswscale/tests/swscale$(EXESUF) -backends unstable -p 0.02 -v 16 ifneq ($(HAVE_BIGENDIAN),yes) + # Disable on big endian because big endian platforms generate different op # lists for le vs be formats; this breaks the checksum otherwise FATE_LIBSWSCALE-$(CONFIG_UNSTABLE) += fate-sws-ops-list fate-sws-ops-list: libswscale/tests/sws_ops$(EXESUF) fate-sws-ops-list: CMD = run libswscale/tests/sws_ops$(EXESUF) | do_md5sum | cut -d" " -f1 +ifeq ($(HAVE_INT128),yes) +# Disable by default without int128 because it is too slow (several minutes) +FATE_LIBSWSCALE-$(CONFIG_UNSTABLE) += fate-sws-uops-macros +endif + # Disable on bigendian because it would result in a different iteration order # (and thus output) due to sorting by memcmp() on the parameters struct. -FATE_LIBSWSCALE-$(CONFIG_UNSTABLE) += fate-sws-uops-macros fate-sws-uops-macros: libswscale/tests/sws_ops$(EXESUF) fate-sws-uops-macros: REF = $(SRC_PATH)/libswscale/uops_macros.h fate-sws-uops-macros: CMD = run libswscale/tests/sws_ops$(EXESUF) -macros + endif FATE_LIBSWSCALE-$(CONFIG_UNSTABLE) += fate-sws-ops-entries-aarch64 _______________________________________________ ffmpeg-cvslog mailing list -- [email protected] To unsubscribe send an email to [email protected]
