< prev index next >

test/hotspot/jtreg/runtime/modules/PatchModule/PatchModule2Dirs.java

Print this page
rev 59076 : [mq]: 8243945


  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 Make sure --patch-module works with multiple directories.
  27  * @modules java.base/jdk.internal.misc
  28  * @library /test/lib
  29  * @compile PatchModule2DirsMain.java
  30  * @run main PatchModule2Dirs
  31  */
  32 
  33 import jdk.test.lib.compiler.InMemoryJavaCompiler;
  34 import jdk.test.lib.process.OutputAnalyzer;
  35 import jdk.test.lib.process.ProcessTools;
  36 
  37 public class PatchModule2Dirs {
  38 
  39     public static void main(String[] args) throws Exception {
  40         String source1 = "package javax.naming.spi; "               +
  41                         "public class NamingManager { "             +
  42                         "    static { "                             +
  43                         "        System.out.println(\"I pass one!\"); " +
  44                         "    } "                                    +
  45                         "}";
  46         String source2 = "package java.beans; "                     +
  47                         "public class Encoder { "                   +
  48                         "    static { "                             +
  49                         "        System.out.println(\"I pass two!\"); " +
  50                         "    } "                                    +




  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 Make sure --patch-module works with multiple directories.
  27  * @modules java.base/jdk.internal.misc
  28  * @library /test/lib
  29  * @compile PatchModule2DirsMain.java
  30  * @run driver PatchModule2Dirs
  31  */
  32 
  33 import jdk.test.lib.compiler.InMemoryJavaCompiler;
  34 import jdk.test.lib.process.OutputAnalyzer;
  35 import jdk.test.lib.process.ProcessTools;
  36 
  37 public class PatchModule2Dirs {
  38 
  39     public static void main(String[] args) throws Exception {
  40         String source1 = "package javax.naming.spi; "               +
  41                         "public class NamingManager { "             +
  42                         "    static { "                             +
  43                         "        System.out.println(\"I pass one!\"); " +
  44                         "    } "                                    +
  45                         "}";
  46         String source2 = "package java.beans; "                     +
  47                         "public class Encoder { "                   +
  48                         "    static { "                             +
  49                         "        System.out.println(\"I pass two!\"); " +
  50                         "    } "                                    +


< prev index next >