< prev index next >

test/runtime/classFileParserBug/TestEmptyBootstrapMethodsAttr.java

Print this page




   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 /*
  25  * @test TestEmptyBootstrapMethodsAttr
  26  * @bug 8041918
  27  * @library /testlibrary

  28  * @summary Test empty bootstrap_methods table within BootstrapMethods attribute
  29  * @compile TestEmptyBootstrapMethodsAttr.java
  30  * @run main TestEmptyBootstrapMethodsAttr
  31  */
  32 
  33 import java.io.File;
  34 import com.oracle.java.testlibrary.*;
  35 
  36 public class TestEmptyBootstrapMethodsAttr {
  37 
  38     public static void main(String args[]) throws Throwable {
  39         System.out.println("Regression test for bug 8041918");
  40         String jarFile = System.getProperty("test.src") + File.separator + "emptynumbootstrapmethods.jar";
  41 
  42         // ====== extract the test case
  43         ProcessBuilder pb = new ProcessBuilder(new String[] { JDKToolFinder.getJDKTool("jar"), "xvf", jarFile } );
  44         OutputAnalyzer output = new OutputAnalyzer(pb.start());
  45         output.shouldHaveExitValue(0);
  46 
  47         // Test case #1:




   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 /*
  25  * @test TestEmptyBootstrapMethodsAttr
  26  * @bug 8041918
  27  * @library /testlibrary
  28  * @build com.oracle.java.testlibrary.*
  29  * @summary Test empty bootstrap_methods table within BootstrapMethods attribute
  30  * @compile TestEmptyBootstrapMethodsAttr.java
  31  * @run main TestEmptyBootstrapMethodsAttr
  32  */
  33 
  34 import java.io.File;
  35 import com.oracle.java.testlibrary.*;
  36 
  37 public class TestEmptyBootstrapMethodsAttr {
  38 
  39     public static void main(String args[]) throws Throwable {
  40         System.out.println("Regression test for bug 8041918");
  41         String jarFile = System.getProperty("test.src") + File.separator + "emptynumbootstrapmethods.jar";
  42 
  43         // ====== extract the test case
  44         ProcessBuilder pb = new ProcessBuilder(new String[] { JDKToolFinder.getJDKTool("jar"), "xvf", jarFile } );
  45         OutputAnalyzer output = new OutputAnalyzer(pb.start());
  46         output.shouldHaveExitValue(0);
  47 
  48         // Test case #1:


< prev index next >