annotate test/runtime/SharedArchiveFile/DefaultUseWithClient.java @ 14366:7907932bdd99

8033215: clang: node.cpp:284 IDX_INIT macro use uninitialized field _out Reviewed-by: twisti, kvn
author henryjen
date Tue, 11 Feb 2014 21:32:19 -0800
parents efc27a069897
children 4510a3502166
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
14275
efc27a069897 8031151: Add basic CDS tests
mseledtsov
parents:
diff changeset
1 /*
efc27a069897 8031151: Add basic CDS tests
mseledtsov
parents:
diff changeset
2 * Copyright (c) 2014, Oracle and/or its affiliates. All rights reserved.
efc27a069897 8031151: Add basic CDS tests
mseledtsov
parents:
diff changeset
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
efc27a069897 8031151: Add basic CDS tests
mseledtsov
parents:
diff changeset
4 *
efc27a069897 8031151: Add basic CDS tests
mseledtsov
parents:
diff changeset
5 * This code is free software; you can redistribute it and/or modify it
efc27a069897 8031151: Add basic CDS tests
mseledtsov
parents:
diff changeset
6 * under the terms of the GNU General Public License version 2 only, as
efc27a069897 8031151: Add basic CDS tests
mseledtsov
parents:
diff changeset
7 * published by the Free Software Foundation.
efc27a069897 8031151: Add basic CDS tests
mseledtsov
parents:
diff changeset
8 *
efc27a069897 8031151: Add basic CDS tests
mseledtsov
parents:
diff changeset
9 * This code is distributed in the hope that it will be useful, but WITHOUT
efc27a069897 8031151: Add basic CDS tests
mseledtsov
parents:
diff changeset
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
efc27a069897 8031151: Add basic CDS tests
mseledtsov
parents:
diff changeset
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
efc27a069897 8031151: Add basic CDS tests
mseledtsov
parents:
diff changeset
12 * version 2 for more details (a copy is included in the LICENSE file that
efc27a069897 8031151: Add basic CDS tests
mseledtsov
parents:
diff changeset
13 * accompanied this code).
efc27a069897 8031151: Add basic CDS tests
mseledtsov
parents:
diff changeset
14 *
efc27a069897 8031151: Add basic CDS tests
mseledtsov
parents:
diff changeset
15 * You should have received a copy of the GNU General Public License version
efc27a069897 8031151: Add basic CDS tests
mseledtsov
parents:
diff changeset
16 * 2 along with this work; if not, write to the Free Software Foundation,
efc27a069897 8031151: Add basic CDS tests
mseledtsov
parents:
diff changeset
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
efc27a069897 8031151: Add basic CDS tests
mseledtsov
parents:
diff changeset
18 *
efc27a069897 8031151: Add basic CDS tests
mseledtsov
parents:
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
efc27a069897 8031151: Add basic CDS tests
mseledtsov
parents:
diff changeset
20 * or visit www.oracle.com if you need additional information or have any
efc27a069897 8031151: Add basic CDS tests
mseledtsov
parents:
diff changeset
21 * questions.
efc27a069897 8031151: Add basic CDS tests
mseledtsov
parents:
diff changeset
22 */
efc27a069897 8031151: Add basic CDS tests
mseledtsov
parents:
diff changeset
23
efc27a069897 8031151: Add basic CDS tests
mseledtsov
parents:
diff changeset
24 /*
efc27a069897 8031151: Add basic CDS tests
mseledtsov
parents:
diff changeset
25 * @test DefaultUseWithClient
efc27a069897 8031151: Add basic CDS tests
mseledtsov
parents:
diff changeset
26 * @summary Test default behavior of sharing with -client
efc27a069897 8031151: Add basic CDS tests
mseledtsov
parents:
diff changeset
27 * @library /testlibrary
efc27a069897 8031151: Add basic CDS tests
mseledtsov
parents:
diff changeset
28 * @run main DefaultUseWithClient
efc27a069897 8031151: Add basic CDS tests
mseledtsov
parents:
diff changeset
29 */
efc27a069897 8031151: Add basic CDS tests
mseledtsov
parents:
diff changeset
30
efc27a069897 8031151: Add basic CDS tests
mseledtsov
parents:
diff changeset
31 import com.oracle.java.testlibrary.*;
efc27a069897 8031151: Add basic CDS tests
mseledtsov
parents:
diff changeset
32 import java.io.File;
efc27a069897 8031151: Add basic CDS tests
mseledtsov
parents:
diff changeset
33
efc27a069897 8031151: Add basic CDS tests
mseledtsov
parents:
diff changeset
34 public class DefaultUseWithClient {
efc27a069897 8031151: Add basic CDS tests
mseledtsov
parents:
diff changeset
35 public static void main(String[] args) throws Exception {
efc27a069897 8031151: Add basic CDS tests
mseledtsov
parents:
diff changeset
36 String fileName = "test.jsa";
efc27a069897 8031151: Add basic CDS tests
mseledtsov
parents:
diff changeset
37
efc27a069897 8031151: Add basic CDS tests
mseledtsov
parents:
diff changeset
38 // On 32-bit windows CDS should be on by default in "-client" config
efc27a069897 8031151: Add basic CDS tests
mseledtsov
parents:
diff changeset
39 // Skip this test on any other platform
efc27a069897 8031151: Add basic CDS tests
mseledtsov
parents:
diff changeset
40 boolean is32BitWindows = (Platform.isWindows() && Platform.is32bit());
efc27a069897 8031151: Add basic CDS tests
mseledtsov
parents:
diff changeset
41 if (!is32BitWindows) {
efc27a069897 8031151: Add basic CDS tests
mseledtsov
parents:
diff changeset
42 System.out.println("Test only applicable on 32-bit Windows. Skipping");
efc27a069897 8031151: Add basic CDS tests
mseledtsov
parents:
diff changeset
43 return;
efc27a069897 8031151: Add basic CDS tests
mseledtsov
parents:
diff changeset
44 }
efc27a069897 8031151: Add basic CDS tests
mseledtsov
parents:
diff changeset
45
efc27a069897 8031151: Add basic CDS tests
mseledtsov
parents:
diff changeset
46 // create the archive
efc27a069897 8031151: Add basic CDS tests
mseledtsov
parents:
diff changeset
47 ProcessBuilder pb = ProcessTools.createJavaProcessBuilder(
efc27a069897 8031151: Add basic CDS tests
mseledtsov
parents:
diff changeset
48 "-XX:+UnlockDiagnosticVMOptions",
efc27a069897 8031151: Add basic CDS tests
mseledtsov
parents:
diff changeset
49 "-XX:SharedArchiveFile=./" + fileName,
efc27a069897 8031151: Add basic CDS tests
mseledtsov
parents:
diff changeset
50 "-Xshare:dump");
efc27a069897 8031151: Add basic CDS tests
mseledtsov
parents:
diff changeset
51 OutputAnalyzer output = new OutputAnalyzer(pb.start());
efc27a069897 8031151: Add basic CDS tests
mseledtsov
parents:
diff changeset
52 output.shouldHaveExitValue(0);
efc27a069897 8031151: Add basic CDS tests
mseledtsov
parents:
diff changeset
53
efc27a069897 8031151: Add basic CDS tests
mseledtsov
parents:
diff changeset
54 pb = ProcessTools.createJavaProcessBuilder(
efc27a069897 8031151: Add basic CDS tests
mseledtsov
parents:
diff changeset
55 "-XX:+UnlockDiagnosticVMOptions",
efc27a069897 8031151: Add basic CDS tests
mseledtsov
parents:
diff changeset
56 "-XX:SharedArchiveFile=./" + fileName,
efc27a069897 8031151: Add basic CDS tests
mseledtsov
parents:
diff changeset
57 "-client",
efc27a069897 8031151: Add basic CDS tests
mseledtsov
parents:
diff changeset
58 "-version");
efc27a069897 8031151: Add basic CDS tests
mseledtsov
parents:
diff changeset
59
efc27a069897 8031151: Add basic CDS tests
mseledtsov
parents:
diff changeset
60 output = new OutputAnalyzer(pb.start());
efc27a069897 8031151: Add basic CDS tests
mseledtsov
parents:
diff changeset
61 output.shouldContain("sharing");
efc27a069897 8031151: Add basic CDS tests
mseledtsov
parents:
diff changeset
62 output.shouldHaveExitValue(0);
efc27a069897 8031151: Add basic CDS tests
mseledtsov
parents:
diff changeset
63 }
efc27a069897 8031151: Add basic CDS tests
mseledtsov
parents:
diff changeset
64 }