Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[lldb] Make module-ownership.mm test more robust against AST node ord…
…ering The current test is checking both the anonymous structs and the template specializations in one FileCheck run, but the anonymous struct line can partially match the AST dump of a template specialization, causing that FileCheck won't match that same line later against the template specialization check and incorrectly fails on that check. This only happens when the template specialization node somehow ends up before the anonymous struct node. This patch just puts the checks for the anonymous structs in their own FileCheck run to prevent them from partially matching any other record decl. Fixes rdar://62997926
- Loading branch information