< prev index next >

test/compiler/compilercontrol/share/AbstractTestBase.java

Print this page
rev 11557 : 8132919: use package in compiler tests
Reviewed-by: duke


   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 package compiler.compilercontrol.share;
  25 
  26 import compiler.compilercontrol.share.method.MethodDescriptor;
  27 import compiler.compilercontrol.share.method.MethodGenerator;

  28 import jdk.test.lib.Pair;
  29 import pool.PoolHelper;
  30 
  31 import java.lang.reflect.Executable;
  32 import java.util.List;
  33 import java.util.concurrent.Callable;
  34 
  35 public abstract class AbstractTestBase {
  36     protected static final MethodGenerator METHOD_GEN = new MethodGenerator();
  37     protected static final int ATTEMPTS = 25;
  38     protected static final List<Pair<Executable, Callable<?>>> METHODS
  39             = new PoolHelper().getAllMethods(PoolHelper.METHOD_FILTER);
  40 
  41     public abstract void test();
  42 
  43     /**
  44      * Generate random valid method descriptor
  45      *
  46      * @param exec method to make descriptor for
  47      * @return a valid {@link MethodDescriptor#isValid()} descriptor instance
  48      */
  49     public static MethodDescriptor getValidMethodDescriptor(Executable exec) {


   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 package compiler.compilercontrol.share;
  25 
  26 import compiler.compilercontrol.share.method.MethodDescriptor;
  27 import compiler.compilercontrol.share.method.MethodGenerator;
  28 import compiler.compilercontrol.share.pool.PoolHelper;
  29 import jdk.test.lib.Pair;

  30 
  31 import java.lang.reflect.Executable;
  32 import java.util.List;
  33 import java.util.concurrent.Callable;
  34 
  35 public abstract class AbstractTestBase {
  36     protected static final MethodGenerator METHOD_GEN = new MethodGenerator();
  37     protected static final int ATTEMPTS = 25;
  38     protected static final List<Pair<Executable, Callable<?>>> METHODS
  39             = new PoolHelper().getAllMethods(PoolHelper.METHOD_FILTER);
  40 
  41     public abstract void test();
  42 
  43     /**
  44      * Generate random valid method descriptor
  45      *
  46      * @param exec method to make descriptor for
  47      * @return a valid {@link MethodDescriptor#isValid()} descriptor instance
  48      */
  49     public static MethodDescriptor getValidMethodDescriptor(Executable exec) {
< prev index next >