Files
lmms/tests/scripted/README.md
Johannes Lorenz 9faa1d90c4 Fix "check-strings" verification (#6485)
PR #6438 does 2 things:

1. Add check-namespace
2. Fix verify script

This PR contains only part 2 (and does some preparations for part 1). The goal of the PR is to make CI succeed on master.
2022-08-13 21:29:15 +02:00

25 lines
684 B
Markdown

# Scripted checks
The checks in this directory are not C++ unit tests, but simple scripts that
check the code for issues.
## Verify
[verify](verify) is a verification script for the scripts in this folder.
## Check strings
[check-strings](check-strings) checks for invalid strings not necessarily in
the code.
Background: When you move a lot of classes and files, the code may be OK, but
many strings outside the code (translations, style.css, .gitmodules etc.) may
still need to be updated. This script checks whether these strings are still
matching the code.
## Check namespace
[check-namespace](check-namespace) checks namespaces and a few related things
like `#ifdef`s.