< prev index next >

test/runtime/classFileParserBug/ClassFileParserBug.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
  26  * @bug 8040018
  27  * @library /testlibrary

  28  * @summary Check for exception instead of assert.
  29  * @run main ClassFileParserBug
  30  */
  31 
  32 import java.io.File;
  33 import com.oracle.java.testlibrary.*;
  34 
  35 public class ClassFileParserBug {
  36     public static void main(String args[]) throws Throwable {
  37 
  38         System.out.println("Regression test for bug 8040018");
  39         String testsrc = System.getProperty("test.src") + "/";
  40         ProcessBuilder pb = ProcessTools.createJavaProcessBuilder(
  41             "-jar", testsrc + File.separator + "test.jar");
  42         OutputAnalyzer output = new OutputAnalyzer(pb.start());
  43         output.shouldContain("java.lang.ClassFormatError: Bad length on BootstrapMethods");
  44         output.shouldHaveExitValue(1);
  45     }
  46 }


   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
  26  * @bug 8040018
  27  * @library /testlibrary
  28  * @build com.oracle.java.testlibrary.*
  29  * @summary Check for exception instead of assert.
  30  * @run main ClassFileParserBug
  31  */
  32 
  33 import java.io.File;
  34 import com.oracle.java.testlibrary.*;
  35 
  36 public class ClassFileParserBug {
  37     public static void main(String args[]) throws Throwable {
  38 
  39         System.out.println("Regression test for bug 8040018");
  40         String testsrc = System.getProperty("test.src") + "/";
  41         ProcessBuilder pb = ProcessTools.createJavaProcessBuilder(
  42             "-jar", testsrc + File.separator + "test.jar");
  43         OutputAnalyzer output = new OutputAnalyzer(pb.start());
  44         output.shouldContain("java.lang.ClassFormatError: Bad length on BootstrapMethods");
  45         output.shouldHaveExitValue(1);
  46     }
  47 }
< prev index next >