aboutsummaryrefslogtreecommitdiffstats
path: root/extras/hs-test/infra
diff options
context:
space:
mode:
Diffstat (limited to 'extras/hs-test/infra')
-rw-r--r--extras/hs-test/infra/hst_suite.go6
1 files changed, 6 insertions, 0 deletions
diff --git a/extras/hs-test/infra/hst_suite.go b/extras/hs-test/infra/hst_suite.go
index 9a3a3c9c8f6..0cedfc692b0 100644
--- a/extras/hs-test/infra/hst_suite.go
+++ b/extras/hs-test/infra/hst_suite.go
@@ -439,6 +439,12 @@ func (s *HstSuite) SkipUnlessLeakCheck() {
}
}
+func (s *HstSuite) SkipIfArm() {
+ if runtime.GOARCH == "arm64" {
+ s.Skip("test case not supported on arm")
+ }
+}
+
func (s *HstSuite) WaitForCoreDump() bool {
var filename string
dir, err := os.Open(s.getLogDirPath())