[compiler-rt] [compiler-rt][rtsan] fseek api interception. (PR #122163)

via llvm-commits llvm-commits at lists.llvm.org
Wed Jan 8 11:58:58 PST 2025


github-actions[bot] wrote:

<!--LLVM CODE FORMAT COMMENT: {clang-format}-->


:warning: C/C++ code formatter, clang-format found issues in your code. :warning:

<details>
<summary>
You can test this locally with the following command:
</summary>

``````````bash
git-clang-format --diff b3ce6dc7232c566c21b84ac5d5795341a355ff79 15bf6445ea2206f24d5478344e8dfcc9a705e880 --extensions cpp -- compiler-rt/lib/rtsan/rtsan_interceptors_posix.cpp compiler-rt/lib/rtsan/tests/rtsan_test_interceptors_posix.cpp
``````````

</details>

<details>
<summary>
View the diff from clang-format here.
</summary>

``````````diff
diff --git a/compiler-rt/lib/rtsan/tests/rtsan_test_interceptors_posix.cpp b/compiler-rt/lib/rtsan/tests/rtsan_test_interceptors_posix.cpp
index f27ff1f7a3..0b87a4b6c1 100644
--- a/compiler-rt/lib/rtsan/tests/rtsan_test_interceptors_posix.cpp
+++ b/compiler-rt/lib/rtsan/tests/rtsan_test_interceptors_posix.cpp
@@ -506,9 +506,7 @@ TEST_F(RtsanOpenedFileTest, FtelloDieWhenRealtime) {
 
 TEST_F(RtsanOpenedFileTest, RewindDieWhenRealtime) {
   int end = fseek(GetOpenFile(), 0, SEEK_END);
-  auto Func = [this]() {
-    rewind(GetOpenFile());
-  };
+  auto Func = [this]() { rewind(GetOpenFile()); };
 
   ExpectRealtimeDeath(Func, "rewind");
   ExpectNonRealtimeSurvival(Func);

``````````

</details>


https://github.com/llvm/llvm-project/pull/122163


More information about the llvm-commits mailing list