Eine aufbereitete Darstellung der Quelle

 
     
 
 
Anforderungen  |   Konzepte  |   Entwurf  |   Entwicklung  |   Qualitätssicherung  |   Lebenszyklus  |   Steuerung
 
 
 
 

Benutzer

Quelle  talosconfig.py

  Sprache: Python
 

# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.

import json
import os


def writeConfigFile(obj, vals):
    data = dict((opt, obj[opt]) for opt in (vals or obj.keys()))
    return json.dumps(data)


def generateTalosConfig(command_line, browser_config, test_config, pid=None):
    bcontroller_vars = [
        "command",
        "child_process",
        "process",
        "browser_wait",
        "test_timeout",
        "browser_path",
        "error_filename",
    ]

    if "xperf_path" in browser_config:
        bcontroller_vars.append("xperf_path")
        bcontroller_vars.extend(["buildid""sourcestamp""repository""title"])
        if "name" in test_config:
            bcontroller_vars.append("testname")
            browser_config["testname"] = test_config["name"]

    browser_config["command"] = " ".join(command_line)

    if (
        ("xperf_providers" in test_config)
        and ("xperf_user_providers" in test_config)
        and ("xperf_stackwalk" in test_config)
    ):  # noqa
        print("extending with xperf!")
        browser_config["xperf_providers"] = test_config["xperf_providers"]
        browser_config["xperf_user_providers"] = test_config["xperf_user_providers"]
        browser_config["xperf_stackwalk"] = test_config["xperf_stackwalk"]
        browser_config["processID"] = pid
        browser_config["approot"] = os.path.dirname(browser_config["browser_path"])
        bcontroller_vars.extend([
            "xperf_providers",
            "xperf_user_providers",
            "xperf_stackwalk",
            "processID",
            "approot",
        ])

    content = writeConfigFile(browser_config, bcontroller_vars)

    with open(browser_config["bcontroller_config"], "w"as fhandle:
        fhandle.write(content)

    return content

Messung V0.5 in Prozent
C=89 H=96 G=92

¤ Dauer der Verarbeitung: 0.3 Sekunden  ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

PVS Prover

Isabelle Prover

NIST Cobol Testsuite

Cephes Mathematical Library

Vienna Development Method

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.






                                                                                                                                                                                                                                                                                                                                                                                                     


Neuigkeiten

     Aktuelles
     Motto des Tages

Open Source Software

     Quellcodebibliothek
     Eigene Quellcodes
     Fremde Quellcodes
     Suchen

Jenseits des Üblichen ....

Besucherstatistik

Besucherstatistik

Statistik
#Sources=277311
#Domains=752002