|
|
@ -20,10 +20,12 @@ import java.util.List;
|
|
|
|
import java.util.regex.Pattern;
|
|
|
|
import java.util.regex.Pattern;
|
|
|
|
|
|
|
|
|
|
|
|
import org.junit.jupiter.api.Assumptions;
|
|
|
|
import org.junit.jupiter.api.Assumptions;
|
|
|
|
|
|
|
|
import org.junit.jupiter.api.condition.OS;
|
|
|
|
import org.junit.jupiter.params.ParameterizedTest;
|
|
|
|
import org.junit.jupiter.params.ParameterizedTest;
|
|
|
|
import org.junit.jupiter.params.provider.MethodSource;
|
|
|
|
import org.junit.jupiter.params.provider.MethodSource;
|
|
|
|
|
|
|
|
|
|
|
|
import org.springframework.boot.ansi.AnsiColor;
|
|
|
|
import org.springframework.boot.ansi.AnsiColor;
|
|
|
|
|
|
|
|
import org.springframework.boot.testsupport.junit.DisabledOnOs;
|
|
|
|
import org.springframework.boot.testsupport.testcontainers.DisabledIfDockerUnavailable;
|
|
|
|
import org.springframework.boot.testsupport.testcontainers.DisabledIfDockerUnavailable;
|
|
|
|
|
|
|
|
|
|
|
|
import static org.assertj.core.api.Assertions.assertThat;
|
|
|
|
import static org.assertj.core.api.Assertions.assertThat;
|
|
|
@ -36,6 +38,8 @@ import static org.assertj.core.api.Assertions.assertThat;
|
|
|
|
* @author Alexey Vinogradov
|
|
|
|
* @author Alexey Vinogradov
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
@DisabledIfDockerUnavailable
|
|
|
|
@DisabledIfDockerUnavailable
|
|
|
|
|
|
|
|
@DisabledOnOs(os = { OS.LINUX, OS.MAC }, architecture = "aarch64",
|
|
|
|
|
|
|
|
disabledReason = "The docker images have no ARM support")
|
|
|
|
class SysVinitLaunchScriptIntegrationTests extends AbstractLaunchScriptIntegrationTests {
|
|
|
|
class SysVinitLaunchScriptIntegrationTests extends AbstractLaunchScriptIntegrationTests {
|
|
|
|
|
|
|
|
|
|
|
|
SysVinitLaunchScriptIntegrationTests() {
|
|
|
|
SysVinitLaunchScriptIntegrationTests() {
|
|
|
|