test/langtools/tools/javac/resolve/ResolveHarness.java
changeset 49518 d0ff431a596e
parent 47216 71c04702a3d5
equal deleted inserted replaced
49517:a387ee36e5e0 49518:d0ff431a596e
     1 /*
     1 /*
     2  * Copyright (c) 2011, 2016, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 2011, 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.
   130         predefTranslationMap.put("||", "_oror");
   130         predefTranslationMap.put("||", "_oror");
   131     }
   131     }
   132 
   132 
   133     protected void check() throws Exception {
   133     protected void check() throws Exception {
   134         String[] options = {
   134         String[] options = {
   135             "--should-stop:at=ATTR",
   135             "--should-stop=at=ATTR",
   136             "--debug:verboseResolution=success,failure,applicable,inapplicable,deferred-inference,predef"
   136             "--debug=verboseResolution=success,failure,applicable,inapplicable,deferred-inference,predef"
   137         };
   137         };
   138 
   138 
   139         AbstractProcessor[] processors = { new ResolveCandidateFinder(), null };
   139         AbstractProcessor[] processors = { new ResolveCandidateFinder(), null };
   140 
   140 
   141         @SuppressWarnings("unchecked")
   141         @SuppressWarnings("unchecked")