File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed
lldb/unittests/tools/lldb-server/tests Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -18,6 +18,9 @@ using namespace llvm;
18
18
#undef SendMessage
19
19
#endif
20
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)
21
24
TEST_F (TestBase, LaunchModePreservesEnvironment) {
22
25
putenv (const_cast <char *>(" LLDB_TEST_MAGIC_VARIABLE=LLDB_TEST_MAGIC_VALUE" ));
23
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
35
39
36
40
TEST_F (TestBase, DS_TEST(DebugserverEnv)) {
37
41
// Test that --env takes precedence over inherited environment variables.
You can’t perform that action at this time.
0 commit comments