aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Storsjö <martin@martin.st>2024-12-12 14:27:25 +0200
committerMartin Storsjö <martin@martin.st>2024-12-13 09:48:17 +0200
commiteb79c316c7b205f45e7003e91f77c253818e6685 (patch)
tree9e66c5df3728534d627c0a7c9cac4dff52031ed1
parenta518b5540de469ac5d4f96e820462e5ce519c2db (diff)
downloadffmpeg-eb79c316c7b205f45e7003e91f77c253818e6685.tar.gz
fate: Add a dependency on ffprobe for fate-flcl1905
This fixes occasional failed tests, if doing "make fate" without a regular "make" or "make all" inbetween. Signed-off-by: Martin Storsjö <martin@martin.st>
-rw-r--r--tests/fate/audio.mak6
1 files changed, 4 insertions, 2 deletions
diff --git a/tests/fate/audio.mak b/tests/fate/audio.mak
index 4d6c479b6b..6e091760ea 100644
--- a/tests/fate/audio.mak
+++ b/tests/fate/audio.mak
@@ -82,10 +82,12 @@ fate-smacker-audio: CMD = framecrc -i $(TARGET_SAMPLES)/smacker/wetlogo.smk -vn
FATE_SAMPLES_AUDIO-$(call DEMDEC, WSVQA, WS_SND1, ARESAMPLE_FILTER) += fate-ws_snd
fate-ws_snd: CMD = md5 -i $(TARGET_SAMPLES)/vqa/ws_snd.vqa -f s16le -af aresample
-FATE_SAMPLES_AUDIO-$(call DEMDEC, WAV, WMAV2, FILE_PROTOCOL) += fate-flcl1905
+FATE_SAMPLES_AUDIO_FFPROBE-$(call DEMDEC, WAV, WMAV2, FILE_PROTOCOL) += fate-flcl1905
fate-flcl1905: CMD = run ffprobe$(PROGSSUF)$(EXESUF) -show_frames -show_packets -print_format compact $(TARGET_SAMPLES)/wav/FLCL_Ending_My-short.wav
FATE_SAMPLES_AUDIO += $(FATE_SAMPLES_AUDIO-yes)
+FATE_SAMPLES_AUDIO_FFPROBE += $(FATE_SAMPLES_AUDIO_FFPROBE-yes)
FATE_SAMPLES_FFMPEG += $(FATE_SAMPLES_AUDIO)
-fate-audio: $(FATE_SAMPLES_AUDIO)
+FATE_SAMPLES_FFPROBE += $(FATE_SAMPLES_AUDIO_FFPROBE)
+fate-audio: $(FATE_SAMPLES_AUDIO) $(FATE_SAMPLES_AUDIO_FFPROBE)