https://github.com/hubert-reinterpretcast created https://github.com/llvm/llvm-project/pull/209364
Borrow from `libcxx/test/.clang-format` to avoid `clang-format` suggestions that are incompatible with `FileCheck`. >From 368d765c913e2e3677425897efb8840b4fc71655 Mon Sep 17 00:00:00 2001 From: Hubert Tong <[email protected]> Date: Mon, 13 Jul 2026 23:55:12 -0400 Subject: [PATCH] [libunwind][test] Add .clang-format Borrow from `libcxx/test/.clang-format` to avoid `clang-format` suggestions that are incompatible with `FileCheck`. --- libunwind/test/.clang-format | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 libunwind/test/.clang-format diff --git a/libunwind/test/.clang-format b/libunwind/test/.clang-format new file mode 100644 index 0000000000000..74990cb550d3c --- /dev/null +++ b/libunwind/test/.clang-format @@ -0,0 +1,4 @@ +BasedOnStyle: InheritParentConfig + +# Disable formatting options which may break tests. +ReflowComments: false _______________________________________________ cfe-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
