Moved all openMSX data to local bin to enable video recorder.
All checks were successful
Run test asserts / Test-Asserts (push) Successful in -7s

This commit is contained in:
Willem Cazander 2024-06-28 22:29:37 +02:00
parent 33ef6ed712
commit 82cb218bef
4 changed files with 26 additions and 10 deletions

View file

@ -1,5 +1,5 @@
BUILD_HELP += \\n\\t* assert-all \(Run all asertion tests\)
BUILD_HELP += \\n\\t* assert-all \(Run all asertion tests\)\\n\\t* assert-all-video \(Merges all video's to one\)
BUILD_TEST := \
test-ahello-m80-assert \
test-ahello-sdcc-assert \
@ -8,5 +8,16 @@ test-dist-qa-dos2-assert \
test-dist-qa-msx1-assert
.PHONY: assert-all
assert-all: $(BUILD_TEST)
assert-all: | $(BUILD_TEST)
@echo All assertions completed.
bin/test/video-merge.lst: | assert-all
@echo === Create video merge listing
ls -1 bin/test/*-omsx/videos/msxbuild-*.avi | awk -F "bin/test/" -v s="file '" -v e="'" '{print s$$2e}' > $@
bin/test/video-session.avi: bin/test/video-merge.lst
ffmpeg -f concat -i $< -c copy $@
.PHONY: assert-all-video
assert-all-video: bin/test/video-session.avi
@echo Video merge completed.