[clang] [clang-format] Fix test (PR #106305)
via cfe-commits
cfe-commits at lists.llvm.org
Tue Aug 27 16:18:26 PDT 2024
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-clang-format
Author: None (darkfeline)
<details>
<summary>Changes</summary>
Broken by https://github.com/llvm/llvm-project/commit/625841c3be4dbaab089c01217726a2906f3a8103
---
Full diff: https://github.com/llvm/llvm-project/pull/106305.diff
1 Files Affected:
- (modified) clang/tools/clang-format/clang-format-test.el (+5-5)
``````````diff
diff --git a/clang/tools/clang-format/clang-format-test.el b/clang/tools/clang-format/clang-format-test.el
index 41df1a9ca68af4..667d606b4f238d 100644
--- a/clang/tools/clang-format/clang-format-test.el
+++ b/clang/tools/clang-format/clang-format-test.el
@@ -58,16 +58,16 @@
(should-not delete)
(should-not display)
(should (equal args
- '("-output-replacements-xml" "-assume-filename" "foo.cpp"
- "-fallback-style" "none"
+ '("--output-replacements-xml" "--assume-filename" "foo.cpp"
+ "--fallback-style" "none"
;; Beginning of buffer, no byte-order mark.
- "-offset" "0"
+ "--offset" "0"
;; We have two lines with 2×2 bytes for the umlauts,
;; 1 byte for the line ending, and 3 bytes for the
;; other ASCII characters each.
- "-length" "16"
+ "--length" "16"
;; Length of a single line (without line ending).
- "-cursor" "7")))))))
+ "--cursor" "7")))))))
(ert-deftest clang-format-buffer--process-encoding ()
"Tests that text is sent to the clang-format process in the
``````````
</details>
https://github.com/llvm/llvm-project/pull/106305
More information about the cfe-commits
mailing list