[Lldb-commits] [PATCH] D67111: Adding caching to libc++ std::function formatter for lookups that require scanning symbols

Frederic Riss via Phabricator via lldb-commits lldb-commits at lists.llvm.org
Tue Sep 10 15:33:45 PDT 2019


friss added inline comments.


================
Comment at: packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/function/TestLibCxxFunction.py:31
+        self.expect("log timers dump",
+                   patterns=["(?!lldb_private::Module::FindSymbolsMatchingRegExAndType).*"])
+
----------------
Does this negative lookahead regex actually fail if FindSymbolsMatchingRegExAndType is in the output? I would expect the `.*` afterwards to match basically anything, including what you have in your negative lookahead or another line of the output.


CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D67111/new/

https://reviews.llvm.org/D67111





More information about the lldb-commits mailing list