9 * This code is distributed in the hope that it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12 * version 2 for more details (a copy is included in the LICENSE file that
13 * accompanied this code).
14 *
15 * You should have received a copy of the GNU General Public License version
16 * 2 along with this work; if not, write to the Free Software Foundation,
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18 *
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20 * or visit www.oracle.com if you need additional information or have any
21 * questions.
22 */
23
24 /*
25 * @test
26 * @summary Tests to verify jimage 'list' action
27 * @library /test/lib
28 * @modules jdk.jlink/jdk.tools.jimage
29 * @build jdk.test.lib.Asserts
30 * @run main JImageListTest
31 */
32
33 import java.io.IOException;
34 import java.nio.file.Files;
35 import java.nio.file.Path;
36 import java.nio.file.Paths;
37 import java.util.*;
38 import java.util.stream.Collectors;
39 import java.util.stream.Stream;
40
41 import static jdk.test.lib.Asserts.assertEquals;
42 import static jdk.test.lib.Asserts.assertFalse;
43 import static jdk.test.lib.Asserts.assertTrue;
44
45 public class JImageListTest extends JImageCliTest {
46 public void testList() {
47 jimage("list", getImagePath())
48 .assertSuccess()
49 .resultChecker(r -> {
|
9 * This code is distributed in the hope that it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12 * version 2 for more details (a copy is included in the LICENSE file that
13 * accompanied this code).
14 *
15 * You should have received a copy of the GNU General Public License version
16 * 2 along with this work; if not, write to the Free Software Foundation,
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18 *
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20 * or visit www.oracle.com if you need additional information or have any
21 * questions.
22 */
23
24 /*
25 * @test
26 * @summary Tests to verify jimage 'list' action
27 * @library /test/lib
28 * @modules jdk.jlink/jdk.tools.jimage
29 * @run main JImageListTest
30 */
31
32 import java.io.IOException;
33 import java.nio.file.Files;
34 import java.nio.file.Path;
35 import java.nio.file.Paths;
36 import java.util.*;
37 import java.util.stream.Collectors;
38 import java.util.stream.Stream;
39
40 import static jdk.test.lib.Asserts.assertEquals;
41 import static jdk.test.lib.Asserts.assertFalse;
42 import static jdk.test.lib.Asserts.assertTrue;
43
44 public class JImageListTest extends JImageCliTest {
45 public void testList() {
46 jimage("list", getImagePath())
47 .assertSuccess()
48 .resultChecker(r -> {
|