From d0692da27122c0e6441336d2fbadae23c0b5c85e Mon Sep 17 00:00:00 2001
From: kenneth_suter <kenneth_suter@localhost>
Date: Tue, 31 Jul 2007 19:59:16 +0000
Subject: [PATCH] disabled quicksetup tests that stop/start server as they are causing memory use problems with the test machines

---
 opends/tests/unit-tests-testng/src/server/org/opends/quicksetup/ConfigurationTest.java |   20 ++++++++++----------
 1 files changed, 10 insertions(+), 10 deletions(-)

diff --git a/opends/tests/unit-tests-testng/src/server/org/opends/quicksetup/ConfigurationTest.java b/opends/tests/unit-tests-testng/src/server/org/opends/quicksetup/ConfigurationTest.java
index 6efc4a2..289553a 100644
--- a/opends/tests/unit-tests-testng/src/server/org/opends/quicksetup/ConfigurationTest.java
+++ b/opends/tests/unit-tests-testng/src/server/org/opends/quicksetup/ConfigurationTest.java
@@ -46,57 +46,57 @@
     config = TestUtilities.getInstallation().getCurrentConfiguration();
   }
 
-  @Test
+  @Test(enabled = false)
   public void testGetDirectoryManagerDns() throws IOException {
     Set<String> dns = config.getDirectoryManagerDns();
     assertTrue(dns.size() > 0);
   }
 
-  @Test
+  @Test(enabled = false)
   public void testGetPort() throws IOException {
     assertTrue(TestUtilities.ldapPort.equals(config.getPort()));
   }
 
-  @Test
+  @Test(enabled = false)
   public void testGetSecurePort() throws IOException {
     // TODO: something more useful
     config.getSecurePort();
   }
 
-  @Test
+  @Test(enabled = false)
   public void testGetLogPaths() throws IOException {
     // TODO: something more useful
     config.getLogPaths();
   }
 
-  @Test
+  @Test(enabled = false)
   public void testHasBeenModified() throws IOException {
     assertTrue(config.hasBeenModified());
   }
 
-  @Test
+  @Test(enabled = false)
   public void testGetOutsideLogs() throws IOException {
     // TODO: something more useful
     config.getOutsideLogs();
   }
 
-  @Test
+  @Test(enabled = false)
   public void testGetOutsideDbs() throws IOException {
     // TODO: something more useful
     config.getOutsideDbs();
   }
 
-  @Test
+  @Test(enabled = false)
   public void testGetContents() throws IOException {
     assertNotNull(config.getContents());
   }
 
-  @Test
+  @Test(enabled = false)
   public void testGetDatabasePaths() throws IOException {
     assertTrue(config.getDatabasePaths().size() > 0);
   }
 
-  @Test
+  @Test(enabled = false)
   public void testLoad() {
     //TODO:  need way to verify reload
   }

--
Gitblit v1.10.0