[Lldb-commits] [lldb] Add a test for evicting unreachable modules from the global module cache (PR #74894)

Adrian Prantl via lldb-commits lldb-commits at lists.llvm.org
Wed Dec 13 15:44:15 PST 2023


================
@@ -0,0 +1,169 @@
+"""
+Test the use of the global module cache in lldb
+"""
+
+import lldb
+
+from lldbsuite.test.decorators import *
+from lldbsuite.test.lldbtest import *
+from lldbsuite.test import lldbutil
+import os
+import shutil
+from pathlib import Path
+import time
+
+class GlobalModuleCacheTestCase(TestBase):
+    # NO_DEBUG_INFO_TESTCASE = True
----------------
adrian-prantl wrote:

why is this commented out?

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


More information about the lldb-commits mailing list