提交 191cb1b9 编写于 作者: S smarks

7112267: clean up fix for 7110700

Reviewed-by: dmeetry
上级 0335b4e1
...@@ -22,7 +22,7 @@ ...@@ -22,7 +22,7 @@
*/ */
/* @test /* @test
* @bug 6317435 7068148 * @bug 6317435 7110700
* @summary Verify that stack trace contains a proper cause of * @summary Verify that stack trace contains a proper cause of
* InvalidClassException (methods: checkSerialize, * InvalidClassException (methods: checkSerialize,
* checkDeserialize or checkDefaultSerialize) * checkDeserialize or checkDefaultSerialize)
...@@ -59,7 +59,7 @@ public class ExpectedStackTrace { ...@@ -59,7 +59,7 @@ public class ExpectedStackTrace {
private static final String SER_METHOD_NAME = "checkSerializable"; private static final String SER_METHOD_NAME = "checkSerializable";
public static final void main(String[] args) throws Exception { public static final void main(String[] args) throws Exception {
System.err.println("\nRegression test for CRs 6317435, 7068148"); System.err.println("\nRegression test for CRs 6317435, 7110700");
checkSerializable(getObject()); checkSerializable(getObject());
} }
...@@ -100,8 +100,9 @@ public class ExpectedStackTrace { ...@@ -100,8 +100,9 @@ public class ExpectedStackTrace {
} }
if (found) { if (found) {
if (ex.getCause() != null) { if (ex.getCause() != null) {
throw new Error("\nTest for CR 7068148 FAILED"); throw new Error("\nTest for CR 7110700 FAILED");
} }
System.err.println("\nTEST PASSED");
} else { } else {
throw new Error("\nTest for CR 6317435 FAILED"); throw new Error("\nTest for CR 6317435 FAILED");
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册