< prev index next >

test/sun/security/tools/jarsigner/AltProvider.java

Print this page
rev 17325 : 8181761: add explicit @build actions for jdk.test.lib classes in all :tier2 tests
Reviewed-by: duke


  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  * @bug 4906940 8130302
  27  * @summary -providerPath, -providerClass, -addprovider, and -providerArg
  28  * @library /test/lib
  29  * @modules java.base/jdk.internal.misc









  30  */
  31 
  32 import jdk.test.lib.JDKToolLauncher;
  33 import jdk.test.lib.process.OutputAnalyzer;
  34 import jdk.test.lib.process.ProcessTools;
  35 import jdk.test.lib.util.JarUtils;
  36 import jdk.test.lib.compiler.CompilerUtils;
  37 
  38 import java.nio.file.*;
  39 
  40 public class AltProvider {
  41 
  42     private static final String TEST_SRC =
  43             Paths.get(System.getProperty("test.src")).toString();
  44 
  45     private static final Path MOD_SRC_DIR = Paths.get(TEST_SRC, "alt");
  46     private static final Path MOD_DEST_DIR = Paths.get("mods");
  47 
  48     private static final String ktCommand = "-keystore x.jks " +
  49             "-storepass changeit -storetype dummyks -list -debug";




  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  * @bug 4906940 8130302
  27  * @summary -providerPath, -providerClass, -addprovider, and -providerArg
  28  * @library /test/lib
  29  * @modules java.base/jdk.internal.misc
  30  * @build jdk.test.lib.util.JarUtils
  31  *        jdk.test.lib.compiler.CompilerUtils
  32  *        jdk.test.lib.Utils
  33  *        jdk.test.lib.Asserts
  34  *        jdk.test.lib.JDKToolFinder
  35  *        jdk.test.lib.JDKToolLauncher
  36  *        jdk.test.lib.Platform
  37  *        jdk.test.lib.process.*
  38  * @run main AltProvider
  39  */
  40 
  41 import jdk.test.lib.JDKToolLauncher;
  42 import jdk.test.lib.process.OutputAnalyzer;
  43 import jdk.test.lib.process.ProcessTools;
  44 import jdk.test.lib.util.JarUtils;
  45 import jdk.test.lib.compiler.CompilerUtils;
  46 
  47 import java.nio.file.*;
  48 
  49 public class AltProvider {
  50 
  51     private static final String TEST_SRC =
  52             Paths.get(System.getProperty("test.src")).toString();
  53 
  54     private static final Path MOD_SRC_DIR = Paths.get(TEST_SRC, "alt");
  55     private static final Path MOD_DEST_DIR = Paths.get("mods");
  56 
  57     private static final String ktCommand = "-keystore x.jks " +
  58             "-storepass changeit -storetype dummyks -list -debug";


< prev index next >