Merge
authorprr
Tue, 21 Mar 2017 09:53:24 -0700
changeset 44356 5661993f0555
parent 44355 bca217cee0d0 (current diff)
parent 44341 8be4fee954fb (diff)
child 44357 e0fbf5f9da3c
child 44646 df364d57eeb2
Merge
--- a/jdk/src/java.base/share/classes/sun/launcher/resources/launcher.properties	Tue Mar 21 08:48:14 2017 -0700
+++ b/jdk/src/java.base/share/classes/sun/launcher/resources/launcher.properties	Tue Mar 21 09:53:24 2017 -0700
@@ -129,7 +129,7 @@
 \    -Xms<size>        set initial Java heap size\n\
 \    -Xmx<size>        set maximum Java heap size\n\
 \    -Xnoclassgc       disable class garbage collection\n\
-\    -Xprof            output cpu profiling data\n\
+\    -Xprof            output cpu profiling data (deprecated)\n\
 \    -Xrs              reduce use of OS signals by Java/VM (see documentation)\n\
 \    -Xshare:auto      use shared class data if possible (default)\n\
 \    -Xshare:off       do not attempt to use shared class data\n\
--- a/jdk/test/sun/tools/jinfo/JInfoTest.java	Tue Mar 21 08:48:14 2017 -0700
+++ b/jdk/test/sun/tools/jinfo/JInfoTest.java	Tue Mar 21 09:53:24 2017 -0700
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2005, 2016, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2005, 2017, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -88,8 +88,8 @@
             LingeredApp.startApp(params, app2);
             OutputAnalyzer output = jinfo("JInfoTestLingeredApp");
             output.shouldHaveExitValue(0);
-            // "HotSpot(TM)" written once per proc
-            documentMatch(output.getStdout(), ".*HotSpot\\(TM\\).*HotSpot\\(TM\\).*");
+            // "Runtime Environment" written once per proc
+            documentMatch(output.getStdout(), ".*Runtime Environment.*Runtime Environment.*");
         } finally {
             JInfoTestLingeredApp.stopApp(app1);
             JInfoTestLingeredApp.stopApp(app2);