11/*
2- * Copyright (c) 2018, 2020 , Oracle and/or its affiliates. All rights reserved.
2+ * Copyright (c) 2018, 2024 , Oracle and/or its affiliates. All rights reserved.
33 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44 *
55 * This code is free software; you can redistribute it and/or modify it
3333import jdk .jpackage .test .PackageType ;
3434import jdk .jpackage .test .Functional ;
3535import jdk .jpackage .test .Annotations .Test ;
36- import jdk .jpackage .test .Annotations .Parameter ;
3736import jdk .jpackage .test .PackageTest ;
3837import jdk .jpackage .test .JPackageCommand ;
3938import jdk .jpackage .test .JavaTool ;
5453public class RuntimeImageTest {
5554
5655 @ Test
57- @ Parameter ("0" )
58- @ Parameter ("1" )
59- @ Parameter ("2" )
60- public static void test (String compression ) throws Exception {
56+ public static void test () throws Exception {
6157 final Path workDir = TKit .createTempDirectory ("runtime" ).resolve ("data" );
6258 final Path jlinkOutputDir = workDir .resolve ("temp.runtime" );
6359 Files .createDirectories (jlinkOutputDir .getParent ());
@@ -67,7 +63,6 @@ public static void test(String compression) throws Exception {
6763 .dumpOutput ()
6864 .addArguments (
6965 "--output" , jlinkOutputDir .toString (),
70- "--compress=" + compression ,
7166 "--add-modules" , "ALL-MODULE-PATH" ,
7267 "--strip-debug" ,
7368 "--no-header-files" ,
0 commit comments