--- old/test/runtime/logging/ItablesTest.java 2016-01-12 13:08:28.122717172 -0500 +++ new/test/runtime/logging/ItablesTest.java 2016-01-12 13:08:27.986339153 -0500 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2015, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 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 @@ -27,7 +27,6 @@ * @summary itables=trace should have logging from each of the statements * in the code * @library /testlibrary - * @ignore 8146435 * @compile ClassB.java * @modules java.base/sun.misc * java.management @@ -40,7 +39,7 @@ public static void main(String[] args) throws Exception { if (Platform.isDebugBuild()) { ProcessBuilder pb = ProcessTools.createJavaProcessBuilder( - "-Xlog:itables=trace", "ClassB"); + "-Xlog:itables=trace", "-Xshare:off", "ClassB"); OutputAnalyzer output = new OutputAnalyzer(pb.start()); output.shouldContain(": Initializing itables for ClassB"); output.shouldContain(": Initializing itable indices for interface ");