From 0ad01f70125260ad28915f99dd73a75c017a8eec Mon Sep 17 00:00:00 2001
From: Valery Kharseko <vharseko@3a-systems.ru>
Date: Wed, 08 Jul 2026 16:14:25 +0000
Subject: [PATCH] Revive the quicksetup test suite (#694)

---
 opendj-server-legacy/src/test/java/org/opends/quicksetup/util/ServerControllerTest.java |    7 ++++---
 1 files changed, 4 insertions(+), 3 deletions(-)

diff --git a/opendj-server-legacy/src/test/java/org/opends/quicksetup/util/ServerControllerTest.java b/opendj-server-legacy/src/test/java/org/opends/quicksetup/util/ServerControllerTest.java
index 3ec55f2..60ea777 100644
--- a/opendj-server-legacy/src/test/java/org/opends/quicksetup/util/ServerControllerTest.java
+++ b/opendj-server-legacy/src/test/java/org/opends/quicksetup/util/ServerControllerTest.java
@@ -13,6 +13,7 @@
  *
  * Copyright 2006-2008 Sun Microsystems, Inc.
  * Portions Copyright 2015 ForgeRock AS.
+ * Portions Copyright 2026 3A Systems, LLC
  */
 package org.opends.quicksetup.util;
 
@@ -30,7 +31,7 @@
  * ServerController Tester.
  */
 @SuppressWarnings("javadoc")
-@Test(groups = {"slow"})
+@Test(sequential=true)
 public class ServerControllerTest extends QuickSetupTestCase {
 
   private ServerController controller;
@@ -47,7 +48,7 @@
    * Tests ability to stop the server.
    * @throws ApplicationException
    */
-  @Test(enabled = false)
+  @Test
   public void testStopServer() throws ApplicationException {
     if (!status.isServerRunning()) {
       controller.startServer();
@@ -61,7 +62,7 @@
    * Tests ability to start the server.
    * @throws ApplicationException
    */
-  @Test(enabled = false)
+  @Test
   public void testStartServer() throws ApplicationException {
     if (status.isServerRunning()) {
       controller.stopServer();

--
Gitblit v1.10.0