File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -64,12 +64,12 @@ ln -s .. external
64
64
65
65
has_srcs=false
66
66
if [[ -n "{c_sources}" ]]; then
67
- "$bin" --quiet --export-fixes $TEST_UNDECLARED_OUTPUTS_DIR/cfixes.yaml {c_sources} -- {c_flags}
67
+ "$bin" --quiet --verify-config -- export-fixes $TEST_UNDECLARED_OUTPUTS_DIR/cfixes.yaml {c_sources} -- {c_flags}
68
68
has_srcs=true
69
69
fi
70
70
71
71
if [[ -n "{cxx_sources}" ]]; then
72
- "$bin" --quiet --export-fixes $TEST_UNDECLARED_OUTPUTS_DIR/cxxfixes.yaml {cxx_sources} -- {cxx_flags}
72
+ "$bin" --quiet --verify-config -- export-fixes $TEST_UNDECLARED_OUTPUTS_DIR/cxxfixes.yaml {cxx_sources} -- {cxx_flags}
73
73
has_srcs=true
74
74
fi
75
75
Original file line number Diff line number Diff line change @@ -33,6 +33,7 @@ trap 'if (($?)); then cat "$logfile" 1>&2; fi; rm "$logfile"' EXIT
33
33
# re-promoted to an error. See the clang-tidy bug here for details:
34
34
# https://github.com/llvm/llvm-project/issues/61969
35
35
set -- \
36
+ --verify-config \
36
37
--checks=-clang-diagnostic-builtin-macro-redefined \
37
38
--warnings-as-errors=-clang-diagnostic-builtin-macro-redefined \
38
39
" $@ "
You can’t perform that action at this time.
0 commit comments