msxbuild/test/0module.mk

21 lines
733 B
Makefile
Raw Normal View History

2021-07-06 02:28:45 +00:00
2024-06-28 20:55:22 +00:00
BUILD_HELP += \\n\\t* assert-all \(Run all asertion tests\)\\n\\t* assert-all-video \(Merges all videos to one\)
2021-07-06 02:28:45 +00:00
BUILD_TEST := \
test-ahello-m80-assert \
test-ahello-sdcc-assert \
test-dist-qa-dos1-assert \
test-dist-qa-dos2-assert \
test-dist-qa-msx1-assert \
test-dist-qa-msxhub-assert
2021-07-06 02:28:45 +00:00
.PHONY: assert-all
assert-all: | $(BUILD_TEST)
2024-06-29 22:12:21 +00:00
@echo === All assertions completed
.PHONY: assert-all-video
2024-06-28 21:17:18 +00:00
assert-all-video: | assert-all
@echo === Build session video listing
2024-06-29 22:33:08 +00:00
ls -1tr bin/test/*-omsx/videos/msxbuild-*.avi | awk -F "bin/test/" -v s="file '" -v e="'" '{print s$$2e}' > bin/test/video-merge.lst
2024-06-28 21:17:18 +00:00
ffmpeg -v quiet -y -f concat -i bin/test/video-merge.lst -c copy bin/test/video-session.avi
2024-06-29 22:12:21 +00:00
@echo === Concatted video completed