Home
last modified time | relevance | path

Searched +full:cxx +full:- +full:test +full:- +full:suite (Results 1 – 25 of 65) sorted by relevance

123

/third_party/python/Lib/distutils/tests/
Dtest_sysconfig.py13 from test.support import run_unittest, swap_item, requires_subprocess, is_wasi
14 from test.support.os_helper import TESTFN
15 from test.support.warnings_helper import check_warnings
43 # test for pythonxx.lib?
98 'CXX': 'sc_cxx',
99 'ARFLAGS': '--sc-arflags',
100 'CFLAGS': '--sc-cflags',
101 'CCSHARED': '--sc-ccshared',
126 os.environ['CXX'] = 'env_cxx --env-cxx-flags'
128 os.environ['LDFLAGS'] = '--env-ldflags'
[all …]
/third_party/rust/crates/cxx/
DCargo.toml2 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++11
19 "c++14" = ["cxxbridge-flags/c++14"]
[all …]
/third_party/rust/crates/cxx/tests/ffi/
DCargo.toml2 name = "cxx-test-suite"
12 cxx = { path = "../..", default-features = false }
14 [build-dependencies]
15 cxx-build = { path = "../../gen/build" }
16 cxxbridge-flags = { path = "../../flags" }
Dbuild.rs17 build.compile("cxx-test-suite"); in main()
19 println!("cargo:rerun-if-changed=tests.cc"); in main()
20 println!("cargo:rerun-if-changed=tests.h"); in main()
/third_party/json/docs/mkdocs/docs/integration/
Dcmake.md19 project(ExampleProject LANGUAGES CXX)
39 project(ExampleProject LANGUAGES CXX)
66 project(ExampleProject LANGUAGES CXX)
99 project(ExampleProject LANGUAGES CXX)
130 …project. That is, when integrating the library as described above, the test suite is not built unl…
138 Enable [extended diagnostic messages](../home/exceptions.md#extended-diagnostic-messages) by defini…
147 Skip expensive/slow test suites. This option is `OFF` by default. Depends on `JSON_BuildTests`.
151 Place user-defined string literals in the global namespace by defining the macro
164 Use non-amalgamated version of the library. This option is `OFF` by default.
168 …clude_directories.html) call) to checks for this library by tools like Clang-Tidy. This option is …
[all …]
/third_party/libunwind/
D.travis.yml5 - HOST=x86_64-linux-gnu
6 - HOST=x86-linux-gnu
7 - HOST=arm-linux-gnueabihf
8 - HOST=aarch64-linux-gnu
9 - HOST=mipsel-linux-gnu
11 #- HOST=powerpc64-linux-gnu
13 linux-s390x: &linux-s390x
16 env: BUILD=s390x-linux-gnu HOST=s390x-linux-gnu
18 - autoreconf -i
19 - ./configure
[all …]
/third_party/rust/crates/cxx/.github/workflows/
Dci.yml16 test:
20 runs-on: ${{matrix.os || 'ubuntu'}}-latest
22 fail-fast: false
25 - rust: nightly
26 - rust: beta
27 - rust: stable
28 - rust: 1.60.0
29 - rust: 1.64.0
30 - name: Cargo on macOS
33 - name: Cargo on Windows (msvc)
[all …]
/third_party/skia/third_party/externals/harfbuzz/.circleci/
Dconfig.yml4 win32-executor:
6 - image: cimg/base:edge-20.04
7 win64-executor:
9 - image: cimg/base:edge-20.04
10 autotools-executor:
12 - image: cimg/base:edge-20.04
16 macos-aat-fonts:
20 - checkout
21- run: HOMEBREW_NO_AUTO_UPDATE=1 brew install pkg-config ragel freetype glib cairo python3 icu4c g…
22 - run: pip3 install meson --upgrade
[all …]
/third_party/libinput/
Dmeson.build17 dir_src_test = meson.current_source_dir() / 'test'
19 dir_gitlab_ci = meson.current_source_dir() / '.gitlab-ci'
21 dir_udev = get_option('udev-dir')
31 # We use libtool-version numbers because it's easier to understand.
44 libinput_so_version = '@0@.@1@.@2@'.format((libinput_lt_c - libinput_lt_a),
50 '-Wno-unused-parameter',
51 '-Wmissing-prototypes',
52 '-Wstrict-prototypes',
53 '-Wundef',
54 '-Wlogical-op',
[all …]
/third_party/flatbuffers/tests/fuzzer/
Dreadme.md1 # Test Flatbuffers library with help of libFuzzer
2 Test suite of Flatbuffers library has fuzzer section with tests are based on libFuzzer library.
4 > LibFuzzer is in-process, coverage-guided, evolutionary fuzzing engine.
5 LibFuzzer is linked with the library under test, and feeds fuzzed inputs to the library via a speci…
14 - `annotator_fuzzer` checks that inputs given to the flatc --annotate are always parsable;
15 - `verifier_fuzzer` checks stability of deserialization engine for `Monster` schema;
16 - `parser_fuzzer` checks stability of schema and json parser under various inputs;
17 - `scalar_parser` focused on validation of the parser while parse numeric scalars in schema and/or …
18 - `flexverifier_fuzzer` checks stability of deserialization engine for FlexBuffers only;
23 CC=clang CXX=clang++ cmake . -DCMAKE_BUILD_TYPE=Debug -DUSE_ASAN=ON
[all …]
/third_party/python/Lib/test/
Dtest__osx_support.py2 Test suite for _osx_support: shared OS X support functions.
11 from test.support import os_helper
25 'CXX', 'PY_CFLAGS', 'PY_LDFLAGS', 'PY_CPPFLAGS',
65 'cc not found - check xcode-select')
73 'CC': 'gcc-test -pthreads',
76 'CC': 'clang -pthreads',
79 newvalue = 'clang -pthreads'
87 'CC': 'gcc-test -pthreads',
90 'CC': 'clang -pthreads',
94 newvalue = 'clang -pthreads'
[all …]
/third_party/json/cmake/
Dci.cmake12 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 …program(CLANG_TOOL NAMES clang++-HEAD clang++ clang++-17 clang++-16 clang++-15 clang++-14 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 …CLANG_TIDY_TOOL NAMES clang-tidy-17 clang-tidy-16 clang-tidy-15 clang-tidy-14 clang-tidy-13 clang-
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 …]
Dtest.cmake4 # download test data
9 # test fixture to download test data
10 add_test(NAME "download_test_data" COMMAND ${CMAKE_COMMAND} --build ${CMAKE_BINARY_DIR}
11 --target download_test_data
17 message(STATUS "Executing test suite with Valgrind (${CMAKE_MEMORYCHECK_COMMAND})")
18 …MAKE_MEMORYCHECK_COMMAND} ${CMAKE_MEMORYCHECK_COMMAND_OPTIONS} --error-exitcode=1 --leak-check=ful…
42 # test functions
56 # Supply test- and standard-specific build settings and/or test properties.
57 # Specify multiple tests using a list e.g., "test-foo;test-bar".
59 # Must be called BEFORE the test is created.
[all …]
/third_party/cups/
Dcups-2.4.0-source.tar.gz ... -ops.test cups-2.4.0/test/4.3-job-ops.test cups- ...
/third_party/skia/third_party/externals/expat/expat/
DChanges7 #616 #649 #650 CVE-2022-43680 -- Fix heap use-after-free after overeager
9 XML_ExternalEntityParserCreate in out-of-memory situations
13 #629 #640 CVE-2022-40674 -- Heap use-after-free vulnerability in
17 #531 #534 CVE-2021-45960 -- Fix issues with left shifts by >=29 places
27 (which needs argument "-n" when running xmlwf).
47 #551 CVE-2022-23990 -- Fix unsigned integer overflow in function
52 #34 #466 #484 CVE-2013-0340/CWE-776 -- Protect against billion laughs attacks
53 (denial-of-service; flavors targeting CPU time or RAM or both,
61 - A new error code XML_ERROR_AMPLIFICATION_LIMIT_BREACH to
63 - Two new API functions ..
[all …]
/third_party/python/Doc/using/
Dconfigure.rst5 .. _configure-options:
12 ./configure --help
17 ---------------
19 .. cmdoption:: --enable-loadable-sqlite-extensions
29 .. cmdoption:: --disable-ipv6
34 .. cmdoption:: --enable-big-digits=[15|30]
44 .. cmdoption:: --with-cxx-main
45 .. cmdoption:: --with-cxx-main=COMPILER
48 compiler: ``$CXX``, or *COMPILER* if specified.
50 .. cmdoption:: --with-suffix=SUFFIX
[all …]
/third_party/mesa3d/.gitlab-ci/build/
Dgitlab-ci.yml2 .build-common:
3 extends: .build-rules
10 - _build/meson-logs/*.txt
11 - _build/meson-logs/strace
12 - shader-db
15 .build-linux:
16 extends: .build-common
23 - !reference [default, before_script]
24 - export PATH="/usr/lib/ccache:$PATH"
25 - export CCACHE_BASEDIR="$PWD"
[all …]
/third_party/python/
Dconfigure.ac2 dnl * Please run autoreconf -if to test your changes! *
5 dnl Python's configure.ac file requires autoconf 2.69 and autoconf-archive.
18 [AC_MSG_ERROR([Please install autoconf-archive package and re-run autoreconf])]
23 [AC_MSG_ERROR([Please install pkgconf's m4 macro package and re-run autoreconf])]
27 dnl - _SAVE_VAR([VAR]) Helper for SAVE_ENV; stores VAR as save_VAR
28 dnl - _RESTORE_VAR([VAR]) Helper for RESTORE_ENV; restores VAR from save_VAR
29 dnl - SAVE_ENV Saves CFLAGS, LDFLAGS, LIBS, and CPPFLAGS
30 dnl - RESTORE_ENV Restores CFLAGS, LDFLAGS, LIBS, and CPPFLAGS
31 dnl - WITH_SAVE_ENV([SCRIPT]) Runs SCRIPT wrapped with SAVE_ENV/RESTORE_ENV
52 dnl PY_CHECK_FUNC(FUNCTION, [INCLUDES], [AC_DEFINE-VAR])
[all …]
/third_party/protobuf/src/
DMakefile.in4 # Copyright (C) 1994-2020 Free Software Foundation, Inc.
22 if test -z '$(MAKELEVEL)'; then \
24 elif test -n '$(MAKE_HOST)'; then \
26 elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \
33 case $${target_option-} in \
36 "target option '$${target_option-}' specified" >&2; \
57 test $$skip_next = yes && { skip_next=no; continue; }; \
59 *=*|--*) continue;; \
60 -*I) strip_trailopt 'I'; skip_next=yes;; \
61 -*I?*) strip_trailopt 'I';; \
[all …]
/third_party/protobuf/third_party/googletest/googletest/
DMakefile.in4 # Copyright (C) 1994-2020 Free Software Foundation, Inc.
23 if test -z '$(MAKELEVEL)'; then \
25 elif test -n '$(MAKE_HOST)'; then \
27 elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \
34 case $${target_option-} in \
37 "target option '$${target_option-}' specified" >&2; \
58 test $$skip_next = yes && { skip_next=no; continue; }; \
60 *=*|--*) continue;; \
61 -*I) strip_trailopt 'I'; skip_next=yes;; \
62 -*I?*) strip_trailopt 'I';; \
[all …]
/third_party/protobuf/third_party/googletest/googlemock/
DMakefile.in4 # Copyright (C) 1994-2020 Free Software Foundation, Inc.
22 if test -z '$(MAKELEVEL)'; then \
24 elif test -n '$(MAKE_HOST)'; then \
26 elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \
33 case $${target_option-} in \
36 "target option '$${target_option-}' specified" >&2; \
57 test $$skip_next = yes && { skip_next=no; continue; }; \
59 *=*|--*) continue;; \
60 -*I) strip_trailopt 'I'; skip_next=yes;; \
61 -*I?*) strip_trailopt 'I';; \
[all …]
/third_party/libabigail/
DNEWS4 elf-helpers: make sure config.h is included first
8 release-text-template.txt: Modernize a little bit.
9 dwarf-reader: Don't compute canonical type while propagating one
10 Bug 29693 - clang-libs from f37 fails self test
11 Bug 30466 - harfbuzz fails self-check on f38
12 Bug 30467 - enlightenment fails self check on f38
14 Bug 30503 - Fail to compare non-anonymous struct vs named struct data members
15 Bug 30461 - insight fails self-compare
16 fedabipkgdiff: Don't choke Koji servers with self-signed SSL certs
19 corpus,tools-utils: Support loading a corpus, its deps & other binaries
[all …]
/third_party/icu/docs/userguide/icu4c/
Dbuild.md1 ---
6 ---
7 <!--
10 -->
16 {: .no_toc .text-delta }
21 ---
28 … you have more time to update your code) revert to the default "using" via `-DU_USING_ICU_NAMESPAC…
33 --- icu4c/source/common/unicode/uversion.h (revision 40704)
35 @@ -127,7 +127,7 @@
39 -# define U_USING_ICU_NAMESPACE 0
[all …]
/third_party/mbedtls/
DCMakeLists.txt4 # - Include directories:
13 # - MBEDTLS_TARGET_PREFIX: CMake targets are designed to be alterable by calling
38 LANGUAGES C CXX
69 option(GEN_FILES "Generate the auto-generated files as needed" OFF) # off in development
71 option(GEN_FILES "Generate the auto-generated files as needed" OFF)
81 # the test suites currently have compile errors with MSVC
88 # Warning string - created as a list for compatibility with CMake 2.8
90 set(CTR_DRBG_128_BIT_KEY_WARN_L2 "**** Using 128-bit keys for CTR_DRBG limits the security of gene…
91 …BIT_KEY_WARN_L3 "**** keys and operations that use random values generated to 128-bit security\n")
114 # If 128-bit keys are configured for CTR_DRBG, display an appropriate warning
[all …]
/third_party/skia/third_party/externals/microhttpd/
Daclocal.m41 # 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 …]

123