summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorYong He <yonghe@outlook.com>2023-07-20 12:50:21 -0700
committerGitHub <noreply@github.com>2023-07-20 12:50:21 -0700
commit76fe0a1dcc73af87846bf27932716188d68d37f0 (patch)
tree8e16a66c9bb4bd3527011adc580ab36b0c3863fe /tools
parentb959836483030dabd63a4618418386a3f7144028 (diff)
Add linux arm64 self-hosted CI. (#3003)
* Add linux arm64 self-hosted CI. * Update CI build script. * fix * Ignore test if FileCheck not found. --------- Co-authored-by: Yong He <yhe@nvidia.com>
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;