# HG changeset patch # User Andreas Eisele # Date 1697615071 -7200 # Node ID e6e3f80c9313f23389d644a8ca7faab2c4821009 # Parent f1b2de1a25552f69260d362a5003f54c5b6763cf TW-84326: temporarily skip AgentSideCheckoutWithSharedMirrorsTest.turn_off_sharing on ARM agents diff -r f1b2de1a2555 -r e6e3f80c9313 mercurial-tests/src/jetbrains/buildServer/buildTriggers/vcs/mercurial/AgentSideCheckoutWithSharedMirrorsTest.java --- a/mercurial-tests/src/jetbrains/buildServer/buildTriggers/vcs/mercurial/AgentSideCheckoutWithSharedMirrorsTest.java Thu Oct 12 18:03:22 2023 +0200 +++ b/mercurial-tests/src/jetbrains/buildServer/buildTriggers/vcs/mercurial/AgentSideCheckoutWithSharedMirrorsTest.java Wed Oct 18 09:44:31 2023 +0200 @@ -16,6 +16,7 @@ package jetbrains.buildServer.buildTriggers.vcs.mercurial; +import com.intellij.openapi.util.SystemInfo; import jetbrains.buildServer.agent.AgentRunningBuild; import jetbrains.buildServer.agent.BuildAgentConfiguration; import jetbrains.buildServer.agent.BuildProgressLogger; @@ -32,6 +33,7 @@ import org.jetbrains.annotations.NotNull; import org.jmock.Expectations; import org.jmock.Mockery; +import org.testng.SkipException; import org.testng.annotations.BeforeMethod; import org.testng.annotations.Test; @@ -114,6 +116,11 @@ public void turn_off_sharing() throws Exception { + // TODO: TW-84326: share extension doesn't work as expected on ARM agents + if (SystemInfo.isARM64) { + throw new SkipException("Ignore test on ARM64 machine"); + } + File myR1Dir = copy(new File("mercurial-tests/testData/subrepos/r1")); copy(new File("mercurial-tests/testData/subrepos/r2")); copy(new File("mercurial-tests/testData/subrepos/r3"));