From 2ffeb31def9927918cc31c00b7c74c54a33bd4d3 Mon Sep 17 00:00:00 2001
From: brinn <brinn>
Date: Sat, 5 Jul 2008 15:25:56 +0000
Subject: [PATCH] change: mark two tests as "slow"

SVN: 7064
---
 .../java/ch/systemsx/cisd/datamover/SelfTestTest.java         | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/datamover/sourceTest/java/ch/systemsx/cisd/datamover/SelfTestTest.java b/datamover/sourceTest/java/ch/systemsx/cisd/datamover/SelfTestTest.java
index 9987d9a0dbe..a661b11ecf9 100644
--- a/datamover/sourceTest/java/ch/systemsx/cisd/datamover/SelfTestTest.java
+++ b/datamover/sourceTest/java/ch/systemsx/cisd/datamover/SelfTestTest.java
@@ -142,7 +142,7 @@ public class SelfTestTest
         SelfTest.check(mockCopier, incomingStore, bufferStore, incomingStore);
     }
 
-    @Test(expectedExceptions = ConfigurationFailureException.class)
+    @Test(expectedExceptions = ConfigurationFailureException.class, groups = "slow")
     public void testContainingPaths()
     {
         final File illegalBufferDirectory = new File(incomingDirectory, "temp");
@@ -150,7 +150,7 @@ public class SelfTestTest
         SelfTest.check(mockCopier, incomingStore, illegalBufferStore, outgoingStore);
     }
 
-    @Test(expectedExceptions = ConfigurationFailureException.class)
+    @Test(expectedExceptions = ConfigurationFailureException.class, groups = "slow")
     public void testNonExistentPaths()
     {
         final File nonExistentIncomingDirectory = new File(workingDirectory, "data");
-- 
GitLab