comparison test/compiler/whitebox/MakeMethodNotCompilableTest.java @ 14726:92aa6797d639

Backed out merge changeset: b51e29501f30 Backed out merge revision to its first parent (8f483e200405)
author Doug Simon <doug.simon@oracle.com>
date Mon, 24 Mar 2014 21:30:43 +0100
parents 2dfa56e10640
children
comparison
equal deleted inserted replaced
14719:0bdd0d157040 14726:92aa6797d639
1 /* 1 /*
2 * Copyright (c) 2013, 2014, Oracle and/or its affiliates. All rights reserved. 2 * Copyright (c) 2013, 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.
51 * 51 *
52 * @throws Exception if one of the checks fails. 52 * @throws Exception if one of the checks fails.
53 */ 53 */
54 @Override 54 @Override
55 protected void test() throws Exception { 55 protected void test() throws Exception {
56 if (skipXcompOSR()) { 56 if (testCase.isOsr() && CompilerWhiteBoxTest.MODE.startsWith(
57 return; 57 "compiled ")) {
58 System.err.printf("Warning: %s is not applicable in %s%n",
59 testCase.name(), CompilerWhiteBoxTest.MODE);
60 return;
58 } 61 }
59 checkNotCompiled(); 62 checkNotCompiled();
60 if (!isCompilable()) { 63 if (!isCompilable()) {
61 throw new RuntimeException(method + " must be compilable"); 64 throw new RuntimeException(method + " must be compilable");
62 } 65 }