test/hotspot/jtreg/runtime/appcds/javaldr/ArrayTest.java
changeset 48979 514c73a1955b
parent 48791 6e079ff6c83c
child 51507 3e3764f8fe36
equal deleted inserted replaced
48978:93996c47d36f 48979:514c73a1955b
     1 /*
     1 /*
     2  * Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 2017, 2018, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     5  * This code is free software; you can redistribute it and/or modify it
     6  * under the terms of the GNU General Public License version 2 only, as
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.
     7  * published by the Free Software Foundation.
    77         for (int i = 0; i < 1; i++) {
    77         for (int i = 0; i < 1; i++) {
    78             argsList.add(arrayClasses[i]);
    78             argsList.add(arrayClasses[i]);
    79         }
    79         }
    80         String[] opts = new String[argsList.size()];
    80         String[] opts = new String[argsList.size()];
    81         opts = argsList.toArray(opts);
    81         opts = argsList.toArray(opts);
    82         output = TestCommon.execCommon(opts);
    82         TestCommon.run(opts).assertNormalExit();
    83         TestCommon.checkExec(output);
       
    84     }
    83     }
    85 }
    84 }