8191313: compiler/runtime/SpreadNullArg.java fails in tier1

Corrected SpreadNullArg.java test to expect NullPointerException after 8157246 fix

Reviewed-by: dcubed, mchung
This commit is contained in:
Rahul Raghavan 2017-11-26 09:05:13 -08:00
parent bc00f6b9b6
commit 2c74ca8c08

View File

@ -49,8 +49,8 @@ public class SpreadNullArg {
mh_spread_target =
MethodHandles.lookup().findStatic(SpreadNullArg.class, "target_spread_arg", mt_ref_arg);
result = (int) mh_spreadInvoker.invokeExact(mh_spread_target, (Object[]) null);
throw new Error("Expected IllegalArgumentException was not thrown");
} catch (IllegalArgumentException e) {
throw new Error("Expected NullPointerException was not thrown");
} catch (NullPointerException e) {
System.out.println("Expected exception : " + e);
} catch (Throwable e) {
throw new Error(e);
@ -58,7 +58,7 @@ public class SpreadNullArg {
if (result != 42) {
throw new Error("result [" + result
+ "] != 42 : Expected IllegalArgumentException was not thrown?");
+ "] != 42 : Expected NullPointerException was not thrown?");
}
}