Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/Java/Openjdk/test/hotspot/jtreg/runtime/jcmd/   (Sun/Oracle ©)  Datei vom 13.11.2022 mit Größe 3 kB image not shown  

Quelle  JcmdCmdLine.java   Sprache: JAVA

 
/*
 * Copyright (c) 2021, 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
 * under the terms of the GNU General Public License version 2 only, as
 * published by the Free Software Foundation.
 *
 * This code is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
 * version 2 for more details (a copy is included in the LICENSE file that
 * accompanied this code).
 *
 * You should have received a copy of the GNU General Public License version
 * 2 along with this work; if not, write to the Free Software Foundation,
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
 *
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
 * or visit www.oracle.com if you need additional information or have any
 * questions.
 *
 */


/*
 * @test
 * @bug 8263640
 * @summary In case of a class path is longer than O_BUFLEN, the class path
 *          should not be truncated in the output from jcmd VM.command_line.
 * @library /test/lib
 * @run driver JcmdCmdLine
 */


import java.io.File;
import java.util.List;
import jdk.test.lib.apps.LingeredApp;
import jdk.test.lib.dcmd.PidJcmdExecutor;
import jdk.test.lib.process.OutputAnalyzer;

public class JcmdCmdLine {
    private static LingeredApp theApp = null;
    private static final int BUFFER_LEN = 2000;
    private static final String JCMD_OPT = "VM.command_line";
    private static final String CLASS_PATH_LINE = "java_class_path (initial):";
    private static final String TRUNCATE_WARNING = "outputStream::do_vsnprintf output truncated";
    public static void main(String[] args) throws Exception {
        try {
            theApp = new LingeredApp();
            theApp.setUseDefaultClasspath(false);
            String classPath = System.getProperty("test.class.path");
            while (classPath.length() < BUFFER_LEN) {
                classPath += File.pathSeparator + classPath;
            }
            LingeredApp.startAppExactJvmOpts(theApp, "-cp",  classPath);
            long pid = theApp.getPid();

            PidJcmdExecutor cmdExecutor = new PidJcmdExecutor(String.valueOf(pid));
            OutputAnalyzer output = cmdExecutor.execute(JCMD_OPT, true/*silent*/);
            output.shouldHaveExitValue(0);
            boolean seenClassPath = false;
            List<String> lines = output.asLines();
            for (int i = 0; i < lines.size(); i++) {
                String line = lines.get(i);
                if (line.startsWith(CLASS_PATH_LINE)) {
                    seenClassPath = true;
                    if (!line.endsWith(classPath)) {
                        throw new RuntimeException("Incomplete java_class_path line.");
                    }
                }
            }
            if (!seenClassPath) {
                throw new RuntimeException("Missing java_class_path line.");
            }
        } finally {
            LingeredApp.stopApp(theApp);
            if (theApp.getOutput().getStderr().contains(TRUNCATE_WARNING)) {
                throw new RuntimeException("Unexpected truncation warning.");
            }
        }
    }
}

Messung V0.5
C=96 H=84 G=90

¤ Dauer der Verarbeitung: 0.4 Sekunden  ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

Beweissystem der NASA

Beweissystem Isabelle

NIST Cobol Testsuite

Cephes Mathematical Library

Wiener Entwicklungsmethode

Haftungshinweis

Die Informationen auf dieser Webseite wurden nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit, noch Qualität der bereit gestellten Informationen zugesichert.

Bemerkung:

Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.