Age | Commit message (Collapse) | Author |
|
Using `xargs -i <cmd> {}` is just doing the default behavior of xargs,
but with extra steps that also don't work on macOS.
|
|
grep -E and -F are POSIX standard, and meets all our matching needs.
|
|
This can also be tripped when the change was simply not being committed,
avoid confusing the author by simply mentioning that.
|
|
|
|
Not sure how this didn't cause a build break when I originally
moved them in #6891. Better fix them now.
|
|
|
|
Problem:
- It is possible for a new test file to be added to the `AK/Tests`
directory without being added to the corresponding
`CMakeLists.txt`. This results in the tests not being run.
Solution:
- As part of CI linting, verify that all the `AK/Tests/Test*.cpp`
files are mentioned in the `CMakeLists.txt`.
|