< prev index next >

test/hotspot/jtreg/runtime/records/ignoreRecordAttribute.java

Print this page
rev 59076 : [mq]: 8243945


   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
   7  * published by the Free Software Foundation.
   8  *
   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 test logging of reasons for ignoring Record attribute
  27 * @library /test/lib
  28 * @compile superNotJLRecord.jcod recordIgnoredVersion.jcod
  29 * @run main/othervm --enable-preview ignoreRecordAttribute
  30 */
  31 
  32 import jdk.test.lib.process.ProcessTools;
  33 import jdk.test.lib.process.OutputAnalyzer;
  34 
  35 public class ignoreRecordAttribute {
  36 
  37     public static void main(String[] args) throws Exception {
  38         String MAJOR_VERSION = Integer.toString(44 + Runtime.version().feature());
  39         ProcessBuilder pb = ProcessTools.createJavaProcessBuilder("--enable-preview",
  40             "-Xlog:class+record", "-Xshare:off", "superNotJLRecord");
  41         OutputAnalyzer output = new OutputAnalyzer(pb.start());
  42         output.shouldContain("Ignoring Record attribute");
  43         output.shouldContain("because super type is not java.lang.Record");
  44 
  45         pb = ProcessTools.createJavaProcessBuilder("--enable-preview",
  46             "-Xlog:class+record", "-Xshare:off", "recordIgnoredVersion");
  47         output = new OutputAnalyzer(pb.start());
  48         output.shouldContain("Ignoring Record attribute");
  49         output.shouldContain("because class file version is not " + MAJOR_VERSION + ".65535");
  50     }


   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
   7  * published by the Free Software Foundation.
   8  *
   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 test logging of reasons for ignoring Record attribute
  27  * @library /test/lib
  28  * @compile superNotJLRecord.jcod recordIgnoredVersion.jcod
  29  * @run driver ignoreRecordAttribute
  30  */
  31 
  32 import jdk.test.lib.process.ProcessTools;
  33 import jdk.test.lib.process.OutputAnalyzer;
  34 
  35 public class ignoreRecordAttribute {
  36 
  37     public static void main(String[] args) throws Exception {
  38         String MAJOR_VERSION = Integer.toString(44 + Runtime.version().feature());
  39         ProcessBuilder pb = ProcessTools.createJavaProcessBuilder("--enable-preview",
  40             "-Xlog:class+record", "-Xshare:off", "superNotJLRecord");
  41         OutputAnalyzer output = new OutputAnalyzer(pb.start());
  42         output.shouldContain("Ignoring Record attribute");
  43         output.shouldContain("because super type is not java.lang.Record");
  44 
  45         pb = ProcessTools.createJavaProcessBuilder("--enable-preview",
  46             "-Xlog:class+record", "-Xshare:off", "recordIgnoredVersion");
  47         output = new OutputAnalyzer(pb.start());
  48         output.shouldContain("Ignoring Record attribute");
  49         output.shouldContain("because class file version is not " + MAJOR_VERSION + ".65535");
  50     }
< prev index next >