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 basic options, i.e. --version, -h
27 * @library /test/lib
28 * @modules jdk.jlink/jdk.tools.jimage
29 * @build jdk.test.lib.Asserts
30 * @run main JImageBasicsTest
31 */
32
33 import static jdk.test.lib.Asserts.assertTrue;
34
35 public class JImageBasicsTest extends JImageCliTest {
36
37 public void testVersion() {
38 jimage("--version")
39 .assertSuccess()
40 .resultChecker(r -> {
41 assertTrue(r.output.contains(System.getProperty("java.version")), "Contains java version.");
42 });
43 }
44
45 public void testFullVersion() {
46 jimage("--full-version")
47 .assertSuccess()
48 .resultChecker(r -> {
49 assertTrue(r.output.contains(System.getProperty("java.version")), "Contains java version.");
|
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 basic options, i.e. --version, -h
27 * @library /test/lib
28 * @modules jdk.jlink/jdk.tools.jimage
29 * @run main JImageBasicsTest
30 */
31
32 import static jdk.test.lib.Asserts.assertTrue;
33
34 public class JImageBasicsTest extends JImageCliTest {
35
36 public void testVersion() {
37 jimage("--version")
38 .assertSuccess()
39 .resultChecker(r -> {
40 assertTrue(r.output.contains(System.getProperty("java.version")), "Contains java version.");
41 });
42 }
43
44 public void testFullVersion() {
45 jimage("--full-version")
46 .assertSuccess()
47 .resultChecker(r -> {
48 assertTrue(r.output.contains(System.getProperty("java.version")), "Contains java version.");
|