< prev index next >

test/jdk/tools/launcher/InfoStreams.java

Print this page
rev 51638 : [mq]: 8210112


   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.
   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  * @library /lib/testlibrary
  27  * @build InfoStreams jdk.testlibrary.ProcessTools
  28  * @run main InfoStreams
  29  * @summary Test that informational options use the correct streams
  30  */
  31 
  32 import jdk.testlibrary.ProcessTools;
  33 import jdk.testlibrary.OutputAnalyzer;
  34 
  35 
  36 public class InfoStreams {
  37 
  38     public static OutputAnalyzer run(String ... opts) throws Exception {
  39         return ProcessTools.executeTestJava(opts).shouldHaveExitValue(0);
  40     }
  41 
  42     private static final String
  43         java_version = System.getProperty("java.version"),
  44         USAGE = "^Usage: java ",
  45         VERSION_ERR = "^(java|openjdk) version \"" + java_version + "\"",
  46         VERSION_OUT = "^(java|openjdk) " + java_version,
  47         FULLVERSION_ERR = "^(java|openjdk) full version \"" + java_version + ".*\"",
  48         FULLVERSION_OUT = "^(java|openjdk) " + java_version,
  49         NONSTD = ".*These extra options are subject to change";
  50 
  51     public static void main(String ... args) throws Exception {
  52 
  53         String classPath = System.getProperty("java.class.path");
  54 




   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.
   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  * @library /test/lib
  27  * @build InfoStreams jdk.test.lib.process.ProcessTools
  28  * @run main InfoStreams
  29  * @summary Test that informational options use the correct streams
  30  */
  31 
  32 import jdk.test.lib.process.ProcessTools;
  33 import jdk.test.lib.process.OutputAnalyzer;

  34 
  35 public class InfoStreams {
  36 
  37     public static OutputAnalyzer run(String ... opts) throws Exception {
  38         return ProcessTools.executeTestJava(opts).shouldHaveExitValue(0);
  39     }
  40 
  41     private static final String
  42         java_version = System.getProperty("java.version"),
  43         USAGE = "^Usage: java ",
  44         VERSION_ERR = "^(java|openjdk) version \"" + java_version + "\"",
  45         VERSION_OUT = "^(java|openjdk) " + java_version,
  46         FULLVERSION_ERR = "^(java|openjdk) full version \"" + java_version + ".*\"",
  47         FULLVERSION_OUT = "^(java|openjdk) " + java_version,
  48         NONSTD = ".*These extra options are subject to change";
  49 
  50     public static void main(String ... args) throws Exception {
  51 
  52         String classPath = System.getProperty("java.class.path");
  53 


< prev index next >