Skip to content
Snippets Groups Projects
Commit 31230cad authored by felmer's avatar felmer
Browse files

add RetryTen annotation to hardlink maker tests.

SVN: 29712
parent a5058a11
No related branches found
No related tags found
No related merge requests found
......@@ -32,6 +32,7 @@ import org.testng.annotations.Test;
import ch.systemsx.cisd.common.io.CollectionIO;
import ch.systemsx.cisd.common.logging.LogInitializer;
import ch.systemsx.cisd.common.test.RetryTen;
/**
* The abstract superclass of tests for the various hardlink maker implementations.
......@@ -128,7 +129,7 @@ public abstract class AbstractHardlinkMakerTest
}
@Test(groups =
{ "requires_unix" })
{ "requires_unix" }, retryAnalyzer = RetryTen.class)
public void testCopyWithHardLinks() throws IOException
{
File inputDir = createDirectory(workingDirectory, "resource-to-copy");
......@@ -150,7 +151,7 @@ public abstract class AbstractHardlinkMakerTest
}
@Test(groups =
{ "requires_unix" })
{ "requires_unix" }, retryAnalyzer = RetryTen.class)
public void testCopyFile() throws IOException
{
File src = createFile(workingDirectory, "fileXXX");
......@@ -180,7 +181,7 @@ public abstract class AbstractHardlinkMakerTest
}
@Test(groups =
{ "requires_unix" })
{ "requires_unix" }, retryAnalyzer = RetryTen.class)
public void testDeleteWhileCopying() throws IOException
{
TestBigStructureCreator creator =
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment