diff options
Diffstat (limited to 'ci/run_lint.sh')
-rwxr-xr-x | ci/run_lint.sh | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/ci/run_lint.sh b/ci/run_lint.sh index 5122ffc2b6..39a90102e7 100755 --- a/ci/run_lint.sh +++ b/ci/run_lint.sh @@ -12,8 +12,17 @@ enter_suite 'lint' set -x +csi_clean() { + find "${BUILD_DIR}/bin" -name 'test-includes-*' -delete + find "${BUILD_DIR}" -name '*test-include*.o' -delete +} + run_test 'top_make clint-full' clint run_test 'top_make testlint' testlint -run_test_wd 5s 'top_make check-single-includes' single-includes +CLICOLOR_FORCE=1 run_test_wd \ + 5s \ + 'top_make check-single-includes' \ + 'csi_clean' \ + single-includes exit_suite |