summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
Diffstat (limited to 'tools')
-rw-r--r--tools/slang-test/slang-test-main.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/tools/slang-test/slang-test-main.cpp b/tools/slang-test/slang-test-main.cpp
index 99593bb90..1359b4474 100644
--- a/tools/slang-test/slang-test-main.cpp
+++ b/tools/slang-test/slang-test-main.cpp
@@ -635,10 +635,10 @@ static TestResult _fileCheckTest(
IFileCheck* fc = context.getFileCheck();
if(!fc)
{
- // TODO(JS):
- // 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;
+ // Ignore if FileCheck is not available.
+ // We could report an error, but our ARM64 CI doesn't have FileCheck yet.
+ testReporter.message(TestMessageType::Info, "FileCheck is not available");
+ return TestResult::Ignored;
}
const bool coloredOutput = true;