diff options
| author | jsmall-nvidia <jsmall@nvidia.com> | 2023-04-12 13:22:53 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-04-12 13:22:53 -0400 |
| commit | 2ce42a25d9732650cfac72211aa918e2fa82b8de (patch) | |
| tree | 7ed6e7272c18563af8a763a898b2b7f23377e365 /tools/slang-test/slang-test-main.cpp | |
| parent | eda9dd33647b271dd5ea5256e87cb23ad269b19f (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/slang-test-main.cpp')
| -rw-r--r-- | tools/slang-test/slang-test-main.cpp | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/tools/slang-test/slang-test-main.cpp b/tools/slang-test/slang-test-main.cpp index 053201c70..cfd61d97b 100644 --- a/tools/slang-test/slang-test-main.cpp +++ b/tools/slang-test/slang-test-main.cpp @@ -636,13 +636,9 @@ static TestResult _fileCheckTest( if(!fc) { // TODO(JS): - // For now if IFileCheck isn't available ignore... -#if 0 + // Do we want to fail or ignore if we don't find file check? testReporter.message(TestMessageType::RunError, "FileCheck is not available"); return TestResult::Fail; -#else - return TestResult::Ignored; -#endif } const bool coloredOutput = true; |
