Searched +full:cxx +full:- +full:test +full:- +full:suite (Results 1 – 25 of 81) sorted by relevance
1234
13 from test.support import run_unittest, swap_item14 from test.support.os_helper import TESTFN15 from test.support.warnings_helper import check_warnings42 # test for pythonxx.lib?92 'CXX': 'sc_cxx',93 'ARFLAGS': '--sc-arflags',94 'CFLAGS': '--sc-cflags',95 'CCSHARED': '--sc-ccshared',120 os.environ['CXX'] = 'env_cxx --env-cxx-flags'122 os.environ['LDFLAGS'] = '--env-ldflags'[all …]
2 name = "cxx"5 categories = ["development-tools::ffi", "api-bindings", "no-std"]7 documentation = "https://docs.rs/cxx"9 exclude = ["/demo", "/gen", "/syntax", "/third-party", "/tools/buck/prelude"]10 homepage = "https://cxx.rs"12 license = "MIT OR Apache-2.0"14 repository = "https://github.com/dtolnay/cxx"15 rust-version = "1.60"18 default = ["std", "cxxbridge-flags/default"] # c++1119 "c++14" = ["cxxbridge-flags/c++14"][all …]
2 name = "cxx-test-suite"12 cxx = { path = "../..", default-features = false }14 [build-dependencies]15 cxx-build = { path = "../../gen/build" }16 cxxbridge-flags = { path = "../../flags" }
17 build.compile("cxx-test-suite"); in main()
5 - HOST=x86_64-linux-gnu6 - HOST=x86-linux-gnu7 - HOST=arm-linux-gnueabihf8 - HOST=aarch64-linux-gnu9 - HOST=mipsel-linux-gnu11 #- HOST=powerpc64-linux-gnu13 linux-s390x: &linux-s390x16 env: BUILD=s390x-linux-gnu HOST=s390x-linux-gnu18 - autoreconf -i19 - ./configure[all …]
15 test:19 runs-on: ${{matrix.os || 'ubuntu'}}-latest21 fail-fast: false24 - rust: nightly25 - rust: beta26 - rust: stable27 - rust: 1.60.028 - rust: 1.64.029 - name: macOS32 - name: Windows (msvc)[all …]
4 win32-executor:6 - image: cimg/base:edge-20.047 win64-executor:9 - image: cimg/base:edge-20.0410 autotools-executor:12 - image: cimg/base:edge-20.0416 macos-aat-fonts:20 - checkout21 …- run: HOMEBREW_NO_AUTO_UPDATE=1 brew install pkg-config ragel freetype glib cairo python3 icu4c g…22 - run: pip3 install meson --upgrade[all …]
4 Values defined in `hb-debug.hh`.8 time (make -j4 CPPFLAGS='-DHB_DEBUG_SUBSET=100' \9 && (make -j4 -C test/api check || cat test/api/test-suite.log))12 time (make -j4 CPPFLAGS='-DHB_DEBUG_SUBSET=100' \13 && make -j4 -C src check \14 && make -j4 -C test/api check \15 && make -j4 -C test/subset check)18 time (make -j4 CPPFLAGS='-DHB_DEBUG_SUBSET=100' \19 && make -j4 check)21 # often catches files you didn't add, e.g. test fonts to EXTRA_DIST[all …]
12 execute_process(COMMAND ${ASTYLE_TOOL} --version OUTPUT_VARIABLE ASTYLE_TOOL_VERSION ERROR_VARIABLE…13 string(REGEX MATCH "[0-9]+(\\.[0-9]+)+" ASTYLE_TOOL_VERSION "${ASTYLE_TOOL_VERSION}")16 find_program(CLANG_TOOL NAMES clang++-HEAD clang++-12 clang++-11 clang++)17 execute_process(COMMAND ${CLANG_TOOL} --version OUTPUT_VARIABLE CLANG_TOOL_VERSION ERROR_VARIABLE C…18 string(REGEX MATCH "[0-9]+(\\.[0-9]+)+" CLANG_TOOL_VERSION "${CLANG_TOOL_VERSION}")21 find_program(CLANG_TIDY_TOOL NAMES clang-tidy-12 clang-tidy-11 clang-tidy)22 execute_process(COMMAND ${CLANG_TIDY_TOOL} --version OUTPUT_VARIABLE CLANG_TIDY_TOOL_VERSION ERROR_…23 string(REGEX MATCH "[0-9]+(\\.[0-9]+)+" CLANG_TIDY_TOOL_VERSION "${CLANG_TIDY_TOOL_VERSION}")24 message(STATUS " Clang-Tidy ${CLANG_TIDY_TOOL_VERSION} (${CLANG_TIDY_TOOL})")29 execute_process(COMMAND ${CPPCHECK_TOOL} --version OUTPUT_VARIABLE CPPCHECK_TOOL_VERSION ERROR_VARI…[all …]
17 dir_src_test = meson.current_source_dir() / 'test'20 dir_udev = get_option('udev-dir')30 # We use libtool-version numbers because it's easier to understand.43 libinput_so_version = '@0@.@1@.@2@'.format((libinput_lt_c - libinput_lt_a),49 '-Wno-unused-parameter',50 '-Wmissing-prototypes',51 '-Wstrict-prototypes',52 '-Wundef',53 '-Wlogical-op',54 '-Wpointer-arith',[all …]
9 CXX = g++ macro13 CFLAGS ?= -O2 -g20 PKG_CONFIG ?= pkg-config22 CHECKER_FLAGS ?= -Wno-vla27 # CFLAGS += -O0 -DDEBUG -g3 -gdwarf-230 -include ${SPARSE_LOCAL_CONFIG}38 LIB_OBJS += compat-$(OS).o58 LIB_OBJS += pre-process.o62 LIB_OBJS += show-parse.o70 LIB_OBJS += target-alpha.o[all …]
2 Test suite for _osx_support: shared OS X support functions.11 from test.support import os_helper26 'CXX', 'PY_CFLAGS', 'PY_LDFLAGS', 'PY_CPPFLAGS',66 'cc not found - check xcode-select')74 'CC': 'gcc-test -pthreads',77 'CC': 'clang -pthreads',80 newvalue = 'clang -pthreads'88 'CC': 'gcc-test -pthreads',91 'CC': 'clang -pthreads',95 newvalue = 'clang -pthreads'[all …]
10 OS=$(shell uname | tr A-Z a-z | tr -d \\-0-9. | sed -E 's/^(net|open|free)bsd/bsd/')11 ARCH=$(shell uname -m)15 CXX_O=-o $@16 CXX_LINK_O=-o $@18 LINK_LOCAL_DIR=-L.19 LINK_LIB=-l$(1)20 CFLAGS_OPT=-O321 CFLAGS_DEBUG=-g25 SHARED=-shared33 GTEST_VER=release-1.8.1[all …]
2 dnl * Please run autoreconf -if to test your changes! *5 dnl Python's configure script requires autoconf 2.69 and autoconf-archive.18 [AC_MSG_ERROR([Please install autoconf-archive package and re-run autoreconf])]22 if test "$srcdir" != . -a "$srcdir" != "$(pwd)"; then23 # If we're building out-of-tree, we need to make sure the following25 # Objects/ -> typeslots.inc26 # Include/ -> Python.h27 # Python/ -> importlib.h29 # regenerated when building out-of-tree, regardless of whether or not30 # the $srcdir counterpart is up-to-date. This is an acceptable trade[all …]
2 # Guess values for system-dependent variables and create Makefiles.8 # Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc.13 ## -------------------- ##15 ## -------------------- ##19 if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then :22 # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which24 alias -g '${1+"$@"}'='"$@"'27 case `(set -o) 2>/dev/null` in #(29 set -o posix ;; #(45 if test -z "$BASH_VERSION$ZSH_VERSION" \[all …]
5 .. _configure-options:12 ./configure --help17 ---------------19 .. cmdoption:: --enable-loadable-sqlite-extensions29 .. cmdoption:: --disable-ipv634 .. cmdoption:: --enable-big-digits=[15|30]39 30 bits if ``void*`` size is 64-bit or larger, 15 bits otherwise.45 .. cmdoption:: --with-cxx-main46 .. cmdoption:: --with-cxx-main=COMPILER49 compiler: ``$CXX``, or *COMPILER* if specified.[all …]
19 #34 #466 #484 CVE-2013-0340/CWE-776 -- Protect against billion laughs attacks20 (denial-of-service; flavors targeting CPU time or RAM or both,28 - A new error code XML_ERROR_AMPLIFICATION_LIMIT_BREACH to30 - Two new API functions ..31 - XML_SetBillionLaughsAttackProtectionMaximumAmplification and32 - XML_SetBillionLaughsAttackProtectionActivationThreshold35 If you ever need to increase the defaults for non-attack XML37 - Two new XML_FEATURE_* constants ..38 - that can be queried using the XML_GetFeatureList function, and39 - that are shown in "xmlwf -v" output.[all …]
... -ops.test cups-2.4.0/test/4.3-job-ops.test cups- ...
2 .build-common:3 extends: .build-rules10 - _build/meson-logs/*.txt11 - _build/meson-logs/strace12 - shader-db15 .build-linux:16 extends: .build-common23 - !reference [default, before_script]24 - export PATH="/usr/lib/ccache:$PATH"25 - export CCACHE_BASEDIR="$PWD"[all …]
5 …roup/glslang/blob/9eef54b2513ca6b40b47b07d24f453848b65c0df/README.md#planned-deprecationsremovals),13 **SPIRV Folder, 1-May, 2020.** Glslang, when installed through CMake,20 …get spirv.hpp, I recommend they get that from [SPIRV-Headers](https://github.com/KhronosGroup/SPIR…22 [](https://travis-ci.o…29 ### Reference Validator and GLSL/ESSL -> AST Front End31 An OpenGL GLSL and OpenGL|ES GLSL (ESSL) front-end for reference validation and translation of GLSL…35 ### HLSL -> AST Front End37 An HLSL front-end for translation of an approximation of HLSL to glslang's AST form.40 … which receives a much larger investment and attempts to have definitive/reference-level semantics.44 ### AST -> SPIR-V Back End[all …]
4 # - Include directories:13 # - MBEDTLS_TARGET_PREFIX: CMake targets are designed to be alterable by calling37 project("mbed TLS" C CXX)50 option(GEN_FILES "Generate the auto-generated files as needed" OFF)52 option(GEN_FILES "Generate the auto-generated files as needed" ON)60 # the test suites currently have compile errors with MSVC67 # Warning string - created as a list for compatibility with CMake 2.869 set(CTR_DRBG_128_BIT_KEY_WARN_L2 "**** Using 128-bit keys for CTR_DRBG limits the security of gene…70 …BIT_KEY_WARN_L3 "**** keys and operations that use random values generated to 128-bit security\n")93 # If 128-bit keys are configured for CTR_DRBG, display an appropriate warning[all …]
5 test suite to confirm that the binary works as intended is a good next step.7 If you can reproduce a test failure, search for it in the13 * [Supported platforms](#supported-platforms)16 * [Platform list](#platform-list)17 * [Supported toolchains](#supported-toolchains)18 * [Official binary platforms and toolchains](#official-binary-platforms-and-toolchains)19 * [OpenSSL asm support](#openssl-asm-support)20 * [Previous versions of this document](#previous-versions-of-this-document)21 * [Building Node.js on supported platforms](#building-nodejs-on-supported-platforms)22 * [Note about Python 2 and Python 3](#note-about-python-2-and-python-3)[all …]
10 abidiff: add a --debug-tc option11 Bug 29650 - Caching class comparison result potentially too early15 dwarf-reader: Fix class size setting bug16 rhbz2114909 - Refer to changed base classes using their non-qualified names17 ir: Don't crash when looking at corpus-less translation units21 test-read-ctf: Update tests for fixing size and name for underlying types23 dwarf-reader: Leverage ODR & DWZ24 dwarf-reader: Avoid duplicating member functions25 dwarf-reader: Make die_peel_{qual_ptr,typedef} always set peeled type26 Bug 29829 - dwarf-reader: Allow DIEs to be in a lexical block[all …]
1 ---6 ---7 <!--10 -->16 {: .no_toc .text-delta }21 ---26 …International Components for Unicode (ICU) libraries provide robust and full-featured Unicode serv…49 | ICU, ICU4C & ICU4J Homepage | <http://icu-project.org/> …50 | FAQ - Frequently Asked Questions about ICU | <https://unicode-org.github.io/icu/userguide/icufaq/…51 | ICU User's Guide | <https://unicode-org.github.io/icu/> …[all …]
1 # generated automatically by aclocal 1.14.1 -*- Autoconf -*-3 # Copyright (C) 1996-2013 Free Software Foundation, Inc.23 # pkg.m4 - Macros to locate and utilise pkg-config. -*- Autoconf -*-24 # serial 1 (pkg-config-0.24)40 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.47 # PKG_PROG_PKG_CONFIG([MIN-VERSION])48 # ----------------------------------50 [m4_pattern_forbid([^_?PKG_[A-Z_]+$])53 AC_ARG_VAR([PKG_CONFIG], [path to pkg-config utility])54 AC_ARG_VAR([PKG_CONFIG_PATH], [directories to add to pkg-config's search path])[all …]