author | dsamersoff |
Tue, 23 Jun 2015 12:35:21 +0300 | |
changeset 31379 | 8ece48927ac0 |
parent 31342 | dac85d382ac0 |
child 31781 | 6bc2497120a9 |
permissions | -rw-r--r-- |
30862 | 1 |
/* |
2 |
* Copyright (c) 2015, Oracle and/or its affiliates. All rights reserved. |
|
3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
|
4 |
* |
|
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 |
||
31342
dac85d382ac0
8085813: The targeted processes in sun/tools tests should be launched with -XX:+UsePerfData flag in order to work on embedded platforms
ykantser
parents:
31018
diff
changeset
|
24 |
import java.util.ArrayList; |
dac85d382ac0
8085813: The targeted processes in sun/tools tests should be launched with -XX:+UsePerfData flag in order to work on embedded platforms
ykantser
parents:
31018
diff
changeset
|
25 |
import java.util.List; |
dac85d382ac0
8085813: The targeted processes in sun/tools tests should be launched with -XX:+UsePerfData flag in order to work on embedded platforms
ykantser
parents:
31018
diff
changeset
|
26 |
|
30862 | 27 |
import jdk.test.lib.OutputAnalyzer; |
28 |
import jdk.test.lib.Platform; |
|
29 |
import jdk.test.lib.ProcessTools; |
|
31342
dac85d382ac0
8085813: The targeted processes in sun/tools tests should be launched with -XX:+UsePerfData flag in order to work on embedded platforms
ykantser
parents:
31018
diff
changeset
|
30 |
import jdk.test.lib.Utils; |
31018
794e08f6dad4
8081037: serviceability/sa/ tests time out on Windows
ykantser
parents:
30862
diff
changeset
|
31 |
import jdk.test.lib.apps.LingeredApp; |
30862 | 32 |
|
33 |
/* |
|
34 |
* @test |
|
31018
794e08f6dad4
8081037: serviceability/sa/ tests time out on Windows
ykantser
parents:
30862
diff
changeset
|
35 |
* @library /../../test/lib/share/classes |
30862 | 36 |
* @library /testlibrary |
37 |
* @build jdk.test.lib.* |
|
31018
794e08f6dad4
8081037: serviceability/sa/ tests time out on Windows
ykantser
parents:
30862
diff
changeset
|
38 |
* @build jdk.test.lib.apps.* |
30862 | 39 |
* @run main TestStackTrace |
40 |
*/ |
|
41 |
public class TestStackTrace { |
|
42 |
||
43 |
public static void main(String[] args) throws Exception { |
|
44 |
if (!Platform.shouldSAAttach()) { |
|
45 |
System.out.println("SA attach not expected to work - test skipped."); |
|
46 |
return; |
|
47 |
} |
|
48 |
||
31018
794e08f6dad4
8081037: serviceability/sa/ tests time out on Windows
ykantser
parents:
30862
diff
changeset
|
49 |
LingeredApp app = null; |
794e08f6dad4
8081037: serviceability/sa/ tests time out on Windows
ykantser
parents:
30862
diff
changeset
|
50 |
try { |
31342
dac85d382ac0
8085813: The targeted processes in sun/tools tests should be launched with -XX:+UsePerfData flag in order to work on embedded platforms
ykantser
parents:
31018
diff
changeset
|
51 |
List<String> vmArgs = new ArrayList<String>(); |
dac85d382ac0
8085813: The targeted processes in sun/tools tests should be launched with -XX:+UsePerfData flag in order to work on embedded platforms
ykantser
parents:
31018
diff
changeset
|
52 |
vmArgs.add("-XX:+UsePerfData"); |
dac85d382ac0
8085813: The targeted processes in sun/tools tests should be launched with -XX:+UsePerfData flag in order to work on embedded platforms
ykantser
parents:
31018
diff
changeset
|
53 |
vmArgs.addAll(Utils.getVmOptions()); |
dac85d382ac0
8085813: The targeted processes in sun/tools tests should be launched with -XX:+UsePerfData flag in order to work on embedded platforms
ykantser
parents:
31018
diff
changeset
|
54 |
app = LingeredApp.startApp(vmArgs); |
30862 | 55 |
|
31018
794e08f6dad4
8081037: serviceability/sa/ tests time out on Windows
ykantser
parents:
30862
diff
changeset
|
56 |
System.out.println("Attaching sun.jvm.hotspot.tools.StackTrace to " + app.getPid()); |
794e08f6dad4
8081037: serviceability/sa/ tests time out on Windows
ykantser
parents:
30862
diff
changeset
|
57 |
ProcessBuilder processBuilder = ProcessTools.createJavaProcessBuilder( |
794e08f6dad4
8081037: serviceability/sa/ tests time out on Windows
ykantser
parents:
30862
diff
changeset
|
58 |
"-XX:+UsePerfData", |
794e08f6dad4
8081037: serviceability/sa/ tests time out on Windows
ykantser
parents:
30862
diff
changeset
|
59 |
"sun.jvm.hotspot.tools.StackTrace", |
794e08f6dad4
8081037: serviceability/sa/ tests time out on Windows
ykantser
parents:
30862
diff
changeset
|
60 |
Long.toString(app.getPid())); |
794e08f6dad4
8081037: serviceability/sa/ tests time out on Windows
ykantser
parents:
30862
diff
changeset
|
61 |
OutputAnalyzer output = ProcessTools.executeProcess(processBuilder); |
794e08f6dad4
8081037: serviceability/sa/ tests time out on Windows
ykantser
parents:
30862
diff
changeset
|
62 |
System.out.println(output.getOutput()); |
794e08f6dad4
8081037: serviceability/sa/ tests time out on Windows
ykantser
parents:
30862
diff
changeset
|
63 |
|
794e08f6dad4
8081037: serviceability/sa/ tests time out on Windows
ykantser
parents:
30862
diff
changeset
|
64 |
output.shouldHaveExitValue(0); |
794e08f6dad4
8081037: serviceability/sa/ tests time out on Windows
ykantser
parents:
30862
diff
changeset
|
65 |
output.shouldContain("Debugger attached successfully."); |
794e08f6dad4
8081037: serviceability/sa/ tests time out on Windows
ykantser
parents:
30862
diff
changeset
|
66 |
output.stderrShouldNotMatch("[E|e]xception"); |
794e08f6dad4
8081037: serviceability/sa/ tests time out on Windows
ykantser
parents:
30862
diff
changeset
|
67 |
output.stderrShouldNotMatch("[E|e]rror"); |
794e08f6dad4
8081037: serviceability/sa/ tests time out on Windows
ykantser
parents:
30862
diff
changeset
|
68 |
} finally { |
31379
8ece48927ac0
8081576: serviceability/sa tests fail due to LingeredApp process fails to start
dsamersoff
parents:
31342
diff
changeset
|
69 |
LingeredApp.stopApp(app); |
31018
794e08f6dad4
8081037: serviceability/sa/ tests time out on Windows
ykantser
parents:
30862
diff
changeset
|
70 |
} |
30862 | 71 |
} |
72 |
||
73 |
} |