--- old/test/runtime/modules/ModuleHelper.java 2017-03-23 14:05:50.882149539 -0400 +++ new/test/runtime/modules/ModuleHelper.java 2017-03-23 14:05:50.018149503 -0400 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2015, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2015, 2017, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it @@ -32,10 +32,10 @@ public class ModuleHelper { - public static void DefineModule(Object module, String version, String location, - String[] pkgs) throws Throwable { + public static void DefineModule(Object module, boolean is_open, String version, + String location, String[] pkgs) throws Throwable { WhiteBox wb = WhiteBox.getWhiteBox(); - wb.DefineModule(module, version, location, pkgs); + wb.DefineModule(module, is_open, version, location, pkgs); } public static void AddModuleExports(Object from, String pkg, Object to) throws Throwable {