#!/usr/bin/env python3 # 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 argparse import os import site import subprocess import sys from glob import glob
exclude = []
tests = [] for t in cfg.tests: if t.startswith("!"):
exclude.append(t[1:]) else:
tests.append(t) if len(tests) == 0:
tests = filter(lambda t: t notin exclude, ALL_TESTS)
failed = set()
passed = set() for path in tests:
name = os.path.basename(path)
indir = os.path.join(testdir, name)
outdir = os.path.join(outroot, name)
make_dir(outdir)
test = Test(indir, outdir, cfg, verbose=cfg.verbose)
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 ist noch experimentell.