|
|
|
|
@ -1,5 +1,5 @@
@@ -1,5 +1,5 @@
|
|
|
|
|
/* |
|
|
|
|
* Copyright 2012-2020 the original author or authors. |
|
|
|
|
* Copyright 2012-2023 the original author or authors. |
|
|
|
|
* |
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License"); |
|
|
|
|
* you may not use this file except in compliance with the License. |
|
|
|
|
@ -18,9 +18,11 @@ package org.springframework.boot.launchscript;
@@ -18,9 +18,11 @@ package org.springframework.boot.launchscript;
|
|
|
|
|
|
|
|
|
|
import java.util.List; |
|
|
|
|
|
|
|
|
|
import org.junit.jupiter.api.condition.OS; |
|
|
|
|
import org.junit.jupiter.params.ParameterizedTest; |
|
|
|
|
import org.junit.jupiter.params.provider.MethodSource; |
|
|
|
|
|
|
|
|
|
import org.springframework.boot.testsupport.junit.DisabledOnOs; |
|
|
|
|
import org.springframework.boot.testsupport.testcontainers.DisabledIfDockerUnavailable; |
|
|
|
|
|
|
|
|
|
import static org.assertj.core.api.Assertions.assertThat; |
|
|
|
|
@ -32,6 +34,8 @@ import static org.assertj.core.api.Assertions.assertThat;
@@ -32,6 +34,8 @@ import static org.assertj.core.api.Assertions.assertThat;
|
|
|
|
|
* @author Andy Wilkinson |
|
|
|
|
*/ |
|
|
|
|
@DisabledIfDockerUnavailable |
|
|
|
|
@DisabledOnOs(os = { OS.LINUX, OS.MAC }, architecture = "aarch64", |
|
|
|
|
disabledReason = "The docker images have no ARM support") |
|
|
|
|
class JarLaunchScriptIntegrationTests extends AbstractLaunchScriptIntegrationTests { |
|
|
|
|
|
|
|
|
|
JarLaunchScriptIntegrationTests() { |
|
|
|
|
|