summaryrefslogtreecommitdiff
path: root/tools/slang-test/test-context.h
diff options
context:
space:
mode:
authorjsmall-nvidia <jsmall@nvidia.com>2023-04-12 13:22:53 -0400
committerGitHub <noreply@github.com>2023-04-12 13:22:53 -0400
commit2ce42a25d9732650cfac72211aa918e2fa82b8de (patch)
tree7ed6e7272c18563af8a763a898b2b7f23377e365 /tools/slang-test/test-context.h
parenteda9dd33647b271dd5ea5256e87cb23ad269b19f (diff)
Fix for crashes around FileCheck (#2793)
* #include an absolute path didn't work - because paths were taken to always be relative. * Fix scoping issue for filecheck lib. * Small fix for file check issue.
Diffstat (limited to 'tools/slang-test/test-context.h')
-rw-r--r--tools/slang-test/test-context.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/slang-test/test-context.h b/tools/slang-test/test-context.h
index 0abc6906f..00aad5888 100644
--- a/tools/slang-test/test-context.h
+++ b/tools/slang-test/test-context.h
@@ -193,6 +193,7 @@ protected:
Slang::Dictionary<Slang::String, SharedLibraryTool> m_sharedLibTools;
+ Slang::ComPtr<ISlangSharedLibrary> m_fileCheckLibrary;
Slang::ComPtr<Slang::IFileCheck> m_fileCheck;
};