[Lldb-commits] [lldb] a9c8453 - [lldb] Put the headers in unittests/TestingSupport/ into modules

Raphael Isemann via lldb-commits lldb-commits at lists.llvm.org
Fri Dec 20 06:45:03 PST 2019


Author: Raphael Isemann
Date: 2019-12-20T15:43:53+01:00
New Revision: a9c845395f827055b951532451df1ea50184c21d

URL: https://github.com/llvm/llvm-project/commit/a9c845395f827055b951532451df1ea50184c21d
DIFF: https://github.com/llvm/llvm-project/commit/a9c845395f827055b951532451df1ea50184c21d.diff

LOG: [lldb] Put the headers in unittests/TestingSupport/ into modules

Added: 
    lldb/unittests/TestingSupport/module.modulemap

Modified: 
    

Removed: 
    


################################################################################
diff  --git a/lldb/unittests/TestingSupport/module.modulemap b/lldb/unittests/TestingSupport/module.modulemap
new file mode 100644
index 000000000000..542c0b11c78f
--- /dev/null
+++ b/lldb/unittests/TestingSupport/module.modulemap
@@ -0,0 +1,11 @@
+
+module lldb_TestingSupport {
+  requires cplusplus
+  module TestUtilities { header "TestUtilities.h" export * }
+  module MockTildeExpressionResolver { header "MockTildeExpressionResolver.h" export * }
+}
+
+module lldb_TestingSupport_Host {
+  requires cplusplus
+  module NativeProcessTestUtils { header "Host/NativeProcessTestUtils.h" export * }
+}


        


More information about the lldb-commits mailing list