< prev index next >

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

Print this page
rev 17315 : 8181335: remove packageless CompilerUtils
Reviewed-by: duke


   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  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 /lib/testlibrary /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 
  37 import java.nio.file.*;
  38 
  39 public class AltProvider {
  40 
  41     private static final String TEST_SRC =
  42             Paths.get(System.getProperty("test.src")).toString();
  43 
  44     private static final Path MOD_SRC_DIR = Paths.get(TEST_SRC, "alt");
  45     private static final Path MOD_DEST_DIR = Paths.get("mods");
  46 
  47     private static final String ktCommand = "-keystore x.jks " +
  48             "-storepass changeit -storetype dummyks -list -debug";
  49 
  50     private static final String jsCommand = "-keystore x.jks " +
  51             "-storepass changeit -storetype dummyks -debug x.jar x";
  52 
  53     public static void main(String[] args) throws Throwable {
  54 
  55         // Compile the provider




   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  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";
  50 
  51     private static final String jsCommand = "-keystore x.jks " +
  52             "-storepass changeit -storetype dummyks -debug x.jar x";
  53 
  54     public static void main(String[] args) throws Throwable {
  55 
  56         // Compile the provider


< prev index next >