< prev index next >

test/jdk/tools/jpackage/linux/deb/LicenseTest.java

Print this page




  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 jpackage create installer test
  27  * @library ../../helpers
  28  * @library ../base
  29  * @build JPackageHelper
  30  * @build JPackagePath
  31  * @build JPackageInstallerHelper
  32  * @build LicenseBase
  33  * @requires (os.family == "linux")
  34  * @modules jdk.jpackage
  35  * @modules jdk.jpackage/jdk.jpackage.internal
  36  * @run main/othervm -Xmx512m LicenseTest
  37  */
  38 public class LicenseTest {
  39     private static final String TEST_NAME = "LicenseTest";
  40     private static final String EXT = "deb";
  41 
  42     public static void main(String[] args) throws Exception {
  43         if (jdk.jpackage.internal.LinuxDebBundler.isSupported()) {
  44             LicenseBase.run(TEST_NAME, EXT);
  45         }
  46     }
  47 }


  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 jpackage create installer test
  27  * @library ../../helpers
  28  * @library ../base
  29  * @build JPackageHelper
  30  * @build JPackagePath
  31  * @build JPackageInstallerHelper
  32  * @build LicenseBase
  33  * @requires (os.family == "linux")
  34  * @modules jdk.jpackage
  35  * @modules jdk.jpackage/jdk.jpackage.internal
  36  * @run main/othervm/timeout=360 -Xmx512m LicenseTest
  37  */
  38 public class LicenseTest {
  39     private static final String TEST_NAME = "LicenseTest";
  40     private static final String EXT = "deb";
  41 
  42     public static void main(String[] args) throws Exception {
  43         if (jdk.jpackage.internal.LinuxDebBundler.isSupported()) {
  44             LicenseBase.run(TEST_NAME, EXT);
  45         }
  46     }
  47 }
< prev index next >