mirror of
https://github.com/tkmxqrdxddd/davinci-video-converter
synced 2026-03-29 15:25:33 +02:00
- Add test_parser.cpp with argument parsing tests - Add test_validator.cpp with configuration validation tests - Add test_converter.cpp with FFmpeg command building tests - Update Makefile with test targets for unit tests - Update CI workflow to run make test - Add test binaries and media files to .gitignore
47 lines
462 B
Plaintext
47 lines
462 B
Plaintext
# Prerequisites
|
|
*.d
|
|
.vscode
|
|
# Compiled Object files
|
|
*.slo
|
|
*.lo
|
|
*.o
|
|
*.obj
|
|
|
|
# Precompiled Headers
|
|
*.gch
|
|
*.pch
|
|
|
|
# Compiled Dynamic libraries
|
|
*.so
|
|
*.dylib
|
|
*.dll
|
|
|
|
# Fortran module files
|
|
*.mod
|
|
*.smod
|
|
|
|
# Compiled Static libraries
|
|
*.lai
|
|
*.la
|
|
*.a
|
|
*.lib
|
|
|
|
# Executables
|
|
*.exe
|
|
*.out
|
|
*.app
|
|
/output
|
|
/.qtcreator
|
|
/.docker
|
|
PKGBUILD
|
|
|
|
# Devcontainer
|
|
.devcontainer/.vscode
|
|
|
|
# Test files
|
|
tests/*.mp4
|
|
tests/*.mov
|
|
tests/*.mkv
|
|
tests/test_parser
|
|
tests/test_validator
|
|
tests/test_converter |