[lldb] Fix TestGdbRemoteMemoryAllocation on windows
authorPavel Labath <pavel@labath.sk>
Wed, 14 Oct 2020 14:46:10 +0000 (16:46 +0200)
committerPavel Labath <pavel@labath.sk>
Wed, 14 Oct 2020 14:46:10 +0000 (16:46 +0200)
It appears that memory allocation actually works on windows (but it was
not fully wired up before 2c4226f8).

lldb/test/API/tools/lldb-server/memory-allocation/TestGdbRemoteMemoryAllocation.py

index 64e0782..5c8e462 100644 (file)
@@ -6,7 +6,7 @@ from lldbsuite.test import lldbutil
 
 
 supported_linux_archs = ["x86_64", "i386"]
-supported_oses = ["linux"]
+supported_oses = ["linux", "windows"]
 
 class TestGdbRemoteMemoryAllocation(gdbremote_testcase.GdbRemoteTestCaseBase):