Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion libcxx/utils/libcxx/test/modules.py
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ def process_module_partition(self, header, is_c_header):
f'" > {self.tmp_prefix}.{header}.cppm'
)

# Extract the information of the module partition using lang-tidy
# Extract the information of the module partition using clang-tidy
print(
f"// RUN: {self.clang_tidy} {self.tmp_prefix}.{header}.cppm "
" --checks='-*,libcpp-header-exportable-declarations' "
Expand Down Expand Up @@ -222,6 +222,7 @@ def process_header(self, header, include, is_c_header):
print(f'// RUN: echo -e "' f"{include}" f'" > {self.tmp_prefix}.{header}.cpp')
print(
f"// RUN: {self.clang_tidy} {self.tmp_prefix}.{header}.cpp "
" --system-headers "
" --checks='-*,libcpp-header-exportable-declarations' "
" -config='{CheckOptions: [ "
" {"
Expand Down
Loading