[Lldb-commits] [lldb] Fix vfork test strcmp buildbot failure (PR #84224)
via lldb-commits
lldb-commits at lists.llvm.org
Thu Mar 7 09:37:34 PST 2024
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-lldb
Author: None (jeffreytan81)
<details>
<summary>Changes</summary>
The buildbot seems to complain about `strcmp` function not available in the vfork patch (https://github.com/llvm/llvm-project/pull/81564):
https://lab.llvm.org/buildbot/#/builders/68/builds/70093/steps/6/logs/stdio
Unfortunately, I can't reproduce the failure on my linux machine so this is a guessing fix. If anyone has a way to reproduce and very this fix, please feel free to merge this change.
---
Full diff: https://github.com/llvm/llvm-project/pull/84224.diff
1 Files Affected:
- (modified) lldb/test/API/functionalities/fork/concurrent_vfork/main.cpp (+1)
``````````diff
diff --git a/lldb/test/API/functionalities/fork/concurrent_vfork/main.cpp b/lldb/test/API/functionalities/fork/concurrent_vfork/main.cpp
index b0a4446ba01581..40cb63755ee8a5 100644
--- a/lldb/test/API/functionalities/fork/concurrent_vfork/main.cpp
+++ b/lldb/test/API/functionalities/fork/concurrent_vfork/main.cpp
@@ -1,6 +1,7 @@
#include <assert.h>
#include <iostream>
#include <mutex>
+#include <string.h>
#include <sys/wait.h>
#include <thread>
#include <unistd.h>
``````````
</details>
https://github.com/llvm/llvm-project/pull/84224
More information about the lldb-commits
mailing list