< prev index next > test/hotspot/jtreg/serviceability/sa/ClhsdbDumpclass.java
Print this page
/*
- * Copyright (c) 2020, 2021, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2020, 2022, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation.
OutputAnalyzer out = new OutputAnalyzer(javap);
javap.waitFor();
System.out.println(out.getStdout());
System.err.println(out.getStderr());
out.shouldHaveExitValue(0);
- out.shouldMatch("public class " + APP_DOT_CLASSNAME);
+ out.shouldMatch("public identity class " + APP_DOT_CLASSNAME);
} catch (SkippedException se) {
throw se;
} catch (Exception ex) {
throw new RuntimeException("Test ERROR " + ex, ex);
} finally {
< prev index next >