< prev index next >

test/jdk/java/lang/System/OsVersionTest.java

Print this page
rev 51638 : [mq]: 8210112


   5  * This code is free software; you can redistribute it and/or modify it
   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 import jdk.test.lib.Platform;
  25 import jdk.testlibrary.OutputAnalyzer;
  26 import jdk.testlibrary.ProcessTools;
  27 
  28 /*
  29  * @test
  30  * @bug 8132374
  31  * @summary Check that the value of the os.version property is equal
  32  *          to the value of the corresponding OS provided tools.
  33  * @library /lib/testlibrary /test/lib
  34  * @build jdk.test.lib.Platform
  35  * @run main OsVersionTest
  36  * @author Volker Simonis
  37  */
  38 public class OsVersionTest {
  39 
  40     public static void main(String args[]) throws Throwable {
  41         final String osVersion = System.getProperty("os.version");
  42         if (osVersion == null) {
  43             throw new Error("Cant query 'os.version' property!");
  44         }
  45         if (Platform.isLinux() || Platform.isSolaris()) {
  46             OutputAnalyzer output = ProcessTools.executeProcess("uname", "-r");
  47             if (!osVersion.equals(output.getOutput().trim())) {
  48                 throw new Error(osVersion + " != " + output.getOutput().trim());
  49             }
  50         }
  51         else if (Platform.isOSX()) {
  52             OutputAnalyzer output = ProcessTools.executeProcess("sw_vers", "-productVersion");
  53             if (!osVersion.equals(output.getOutput().trim())) {
  54                 throw new Error(osVersion + " != " + output.getOutput().trim());




   5  * This code is free software; you can redistribute it and/or modify it
   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 import jdk.test.lib.Platform;
  25 import jdk.test.lib.process.OutputAnalyzer;
  26 import jdk.test.lib.process.ProcessTools;
  27 
  28 /*
  29  * @test
  30  * @bug 8132374
  31  * @summary Check that the value of the os.version property is equal
  32  *          to the value of the corresponding OS provided tools.
  33  * @library /test/lib

  34  * @run main OsVersionTest
  35  * @author Volker Simonis
  36  */
  37 public class OsVersionTest {
  38 
  39     public static void main(String args[]) throws Throwable {
  40         final String osVersion = System.getProperty("os.version");
  41         if (osVersion == null) {
  42             throw new Error("Cant query 'os.version' property!");
  43         }
  44         if (Platform.isLinux() || Platform.isSolaris()) {
  45             OutputAnalyzer output = ProcessTools.executeProcess("uname", "-r");
  46             if (!osVersion.equals(output.getOutput().trim())) {
  47                 throw new Error(osVersion + " != " + output.getOutput().trim());
  48             }
  49         }
  50         else if (Platform.isOSX()) {
  51             OutputAnalyzer output = ProcessTools.executeProcess("sw_vers", "-productVersion");
  52             if (!osVersion.equals(output.getOutput().trim())) {
  53                 throw new Error(osVersion + " != " + output.getOutput().trim());


< prev index next >