We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a33004a commit 5032c6eCopy full SHA for 5032c6e
lldb/unittests/tools/lldb-server/tests/LLGSTest.cpp
@@ -18,6 +18,9 @@ using namespace llvm;
18
#undef SendMessage
19
#endif
20
21
+// Disable this test on Windows as it appears to have a race condition
22
+// that causes lldb-server not to exit after the inferior hangs up.
23
+#if !defined(_WIN32)
24
TEST_F(TestBase, LaunchModePreservesEnvironment) {
25
putenv(const_cast<char *>("LLDB_TEST_MAGIC_VARIABLE=LLDB_TEST_MAGIC_VALUE"));
26
@@ -32,6 +35,7 @@ TEST_F(TestBase, LaunchModePreservesEnvironment) {
32
35
HasValue(testing::Property(&StopReply::getKind,
33
36
WaitStatus{WaitStatus::Exit, 0})));
34
37
}
38
+#endif
39
40
TEST_F(TestBase, DS_TEST(DebugserverEnv)) {
41
// Test that --env takes precedence over inherited environment variables.
0 commit comments