Skip to content

Commit

Permalink
Disable JarRunnerIT#testNonAsciiDir on Windows
Browse files Browse the repository at this point in the history
With maven-compiler-plugin 2.11.0, this test is not working anymore
on Windows:
Error while storing the mojo status: Input length = 1
  • Loading branch information
gsmet committed Oct 24, 2023
1 parent ec62ffc commit 2081179
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,10 @@
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.Timeout;
import org.junit.jupiter.api.condition.DisabledOnOs;
import org.junit.jupiter.api.condition.EnabledForJreRange;
import org.junit.jupiter.api.condition.JRE;
import org.junit.jupiter.api.condition.OS;

import io.quarkus.deployment.pkg.steps.JarResultBuildStep;
import io.quarkus.deployment.util.IoUtil;
Expand All @@ -60,6 +62,7 @@ public class JarRunnerIT extends MojoTestBase {
* @see <a href="https://github.com/quarkusio/quarkus/issues/11511"/>
*/
@Test
@DisabledOnOs(value = OS.WINDOWS, disabledReason = "With maven-compiler-plugin 2.11.0, this test is not working anymore on Windows: Error while storing the mojo status: Input length = 1")
public void testNonAsciiDir() throws Exception {
final File testDir = initProject("projects/classic", "projects/ěščřžýáíéůú");
final RunningInvoker running = new RunningInvoker(testDir, false);
Expand Down

0 comments on commit 2081179

Please sign in to comment.