< prev index next >

test/tools/jlink/plugins/ExcludeVMPluginTest.java

Print this page




  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  * @summary Test exclude VM plugin
  27  * @author Jean-Francois Denise
  28  * @modules jdk.jlink/jdk.tools.jlink.internal
  29  *          jdk.jlink/jdk.tools.jlink.internal.plugins

  30  * @run main ExcludeVMPluginTest
  31  */
  32 import java.io.ByteArrayInputStream;
  33 import java.net.URI;
  34 import java.nio.file.Path;
  35 import java.nio.file.Paths;
  36 import java.util.HashMap;
  37 import java.util.Map;
  38 import jdk.tools.jlink.internal.ResourcePoolManager;
  39 
  40 import jdk.tools.jlink.internal.plugins.ExcludeVMPlugin;
  41 import jdk.tools.jlink.plugin.Plugin;
  42 import jdk.tools.jlink.plugin.ResourcePool;
  43 import jdk.tools.jlink.plugin.ResourcePoolEntry;
  44 
  45 public class ExcludeVMPluginTest {
  46 
  47     private static final String TAG = "# orig in test\n";
  48 
  49     private static final String[] ARCHITECTURES = {"/", "/amd64/", "/i386/", "/arm/",




  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  * @summary Test exclude VM plugin
  27  * @author Jean-Francois Denise
  28  * @modules jdk.jlink/jdk.tools.jlink.internal
  29  *          jdk.jlink/jdk.tools.jlink.internal.plugins
  30  *          jdk.jlink/jdk.tools.jlink.plugin
  31  * @run main ExcludeVMPluginTest
  32  */
  33 import java.io.ByteArrayInputStream;
  34 import java.net.URI;
  35 import java.nio.file.Path;
  36 import java.nio.file.Paths;
  37 import java.util.HashMap;
  38 import java.util.Map;
  39 import jdk.tools.jlink.internal.ResourcePoolManager;
  40 
  41 import jdk.tools.jlink.internal.plugins.ExcludeVMPlugin;
  42 import jdk.tools.jlink.plugin.Plugin;
  43 import jdk.tools.jlink.plugin.ResourcePool;
  44 import jdk.tools.jlink.plugin.ResourcePoolEntry;
  45 
  46 public class ExcludeVMPluginTest {
  47 
  48     private static final String TAG = "# orig in test\n";
  49 
  50     private static final String[] ARCHITECTURES = {"/", "/amd64/", "/i386/", "/arm/",


< prev index next >