/third_party/typescript_eslint/tests/integration/ |
D | run-all-tests.sh | 2 set -exuo pipefail 4 # We run the services serially and in a non-detached state just that we can ensure predictable 5 # exit codes for all of our integration tests, and we can ensure CI builds pass or fail appropriate… 7 # typescript-and-tslint-plugins-together 8 docker-compose -f tests/integration/docker-compose.yml up --build --abort-on-container-exit typescr… 10 # vue-sfc 11 docker-compose -f tests/integration/docker-compose.yml up --build --abort-on-container-exit vue-sfc 13 # vue-jsx 14 docker-compose -f tests/integration/docker-compose.yml up --build --abort-on-container-exit vue-jsx 16 # recommended-does-not-require-program [all …]
|
D | docker-compose.yml | 4 typescript-and-tslint-plugins-together: 5 build: ./fixtures/typescript-and-tslint-plugins-together 6 container_name: 'typescript-and-tslint-plugins-together' 8 # Runtime link to the relevant built @typescript-eslint packages and integration test utils, 9 # but apply an empty volume for the package tests, we don't need those. 10 - ../../package.json/:/usr/root-package.json 11 - ./utils/:/usr/utils 12 - ../../packages/parser/:/usr/parser 13 - /usr/parser/tests 14 - ../../packages/typescript-estree/:/usr/typescript-estree [all …]
|
D | README.md | 1 # Integration Tests 3 We have a set of integration tests defined in this project to help ensure we don't inadvertently br… 5 These tests are setup to run within docker containers to ensure that each test is completely isolat… 7 ## Adding a new integration test 9 …docker for your platform](https://docs.docker.com/v17.09/engine/installation/#supported-platforms). 10 1. Add a new folder in `/tests/integration/fixtures` 12 1. Create the necessary files to test the integration. 15 1. Add a new entry to `docker-compose.yml` by copy+pasting an existing section, and changing the na… 16 1. Add a new entry to `run-all-tests.sh` by copy+pasting an existing command, and changing the name… 17 1. Run your integration test by running the single command you copied in the previous step. [all …]
|
/third_party/flutter/flutter/packages/flutter_tools/test/integration.shard/ |
D | README.md | 1 # Integration tests 3 These tests are not hermetic, and use the actual Flutter SDK. While 5 Dart VM and Flutter integration. 10 ../../bin/cache/dart-sdk/bin/pub run test test/integration.shard 13 These tests are expensive to run and do not give meaningful coverage 14 information for the flutter tool (since they are black-box tests that 15 run the tool as a subprocess, rather than being unit tests). For this 17 integration and are not run when calculating coverage.
|
D | flutter_run_test.dart | 2 // Use of this source code is governed by a BSD-style license that can be 5 // Integration tests which invoke flutter instead of unit testing the code 6 // will not produce meaningful coverage information - we can measure coverage 40 // over because other integration tests run using flutter-tester which short-cuts 46 <String>[flutterBin, 'run', '-d', 'invalid-device-id'], 54 fail("'flutter run -d invalid-device-id' did not produce the expected error"); 58 test('writes pid-file', () async { 63 …st Timeout.factor(10), tags: <String>['integration']); // The DevFS sync takes a really long time,…
|
D | lifetime_test.dart | 2 // Use of this source code is governed by a BSD-style license that can be 5 // Integration tests which invoke flutter instead of unit testing the code 6 // will not produce meaningful coverage information - we can measure coverage 48 test('does not terminate when a debugger is attached and pause-on-exceptions', () async { 53 …st Timeout.factor(10), tags: <String>['integration']); // The DevFS sync takes a really long time,…
|
D | debugger_stepping_test.dart | 2 // Use of this source code is governed by a BSD-style license that can be 5 // Integration tests which invoke flutter instead of unit testing the code 6 // will not produce meaningful coverage information - we can measure coverage 57 …st Timeout.factor(10), tags: <String>['integration']); // The DevFS sync takes a really long time,…
|
D | flutter_attach_test.dart | 2 // Use of this source code is governed by a BSD-style license that can be 5 // Integration tests which invoke flutter instead of unit testing the code 6 // will not produce meaningful coverage information - we can measure coverage 37 test('writes pid-file', () async { 62 _flutterAttach = FlutterRunTestDriver(tempDir, logPrefix: 'ATTACH-2'); 66 …st Timeout.factor(10), tags: <String>['integration']); // The DevFS sync takes a really long time,…
|
D | expression_evaluation_test.dart | 2 // Use of this source code is governed by a BSD-style license that can be 5 // Integration tests which invoke flutter instead of unit testing the code 6 // will not produce meaningful coverage information - we can measure coverage 89 …st Timeout.factor(10), tags: <String>['integration']); // The DevFS sync takes a really long time,… 136 …st Timeout.factor(10), tags: <String>['integration']); // The DevFS sync takes a really long time,… 164 final InstanceRef res = await flutter.evaluate(resp.id, r'"$year-$month-$day"'); 165 expect(res.valueAsString, equals('${now.year}-${now.month}-${now.day}'));
|
/third_party/flutter/flutter/ |
D | .cirrus.yml | 2 image: gcr.io/flutter-cirrus/build-flutter-image:latest 10 PATH: "$CIRRUS_WORKING_DIR/bin:$CIRRUS_WORKING_DIR/bin/cache/dart-sdk/bin:$PATH" 13 - git clean -xfd 14 - git fetch origin 15 - git fetch origin master # To set FETCH_HEAD for "git merge-base" to work 17 folder: $HOME/.pub-cache 18 …fingerprint_script: echo $OS; grep -r --include=pubspec.yaml 'PUBSPEC CHECKSUM' "$CIRRUS_WORKING_D… 27 - name: docs 36 - name: deploy_gallery 38 - docs [all …]
|
/third_party/flutter/flutter/dev/integration_tests/ui/ |
D | README.md | 1 # Flutter UI integration tests 3 This project contains a collection of non-plugin-dependent UI 4 integration tests. The device code is in the `lib/` directory, the 14 Verifies that `flutter drive --route` works correctly.
|
/third_party/typescript_eslint/ |
D | package.json | 2 "name": "@typescript-eslint/typescript-eslint", 8 "James Henry <typescript-eslint@jameshenry.blog>", 14 "license": "BSD-2-Clause", 15 "repository": "typescript-eslint/typescript-eslint", 17 "url": "https://github.com/typescript-eslint/typescript-eslint/issues" 21 "check:clean-workspace-after-install": "git diff --quiet --exit-code", 24 "check:format": "prettier --list-different \"./**/*.{ts,js,json,md}\"", 25 "check:spelling": "cspell --config=.cspell.json \"**/*.{md,ts,js}\"", 27 "cz": "git-cz", 28 "format": "prettier --write \"./**/*.{ts,js,json,md}\"", [all …]
|
/third_party/protobuf/.github/ |
D | mergeable.yml | 5 - must_exclude: 8 - or: 9 - and: 10 - must_include: 13 - must_include: 14 …regex: '^(c#|c\+\+|cleanup|conformance tests|integration|java|javascript|go|objective-c|php|python… 15 …c++, java, python). Or apply one of the following labels: cleanup, conformance tests, integration.' 16 - must_include:
|
/third_party/nghttp2/.github/workflows/ |
D | build.yml | 7 runs-on: ${{ matrix.os }} 11 os: [ubuntu-20.04, macos-10.15] 16 - uses: actions/checkout@v2 17 - name: Linux setup 20 sudo apt-get install \ 21 g++-8 \ 22 clang-10 \ 25 autotools-dev \ 27 pkg-config \ 28 zlib1g-dev \ [all …]
|
/third_party/mbedtls/ |
D | CONTRIBUTING.md | 5 …- As with any open source project, contributions will be reviewed by the project team and communit… 6 …- The contribution should not break API or ABI, unless there is a real justification for that. If … 9 ---------------- 10 - We would ask that contributions conform to [our coding standards](https://tls.mbed.org/kb/develop… 11 - The code should be written in a clean and readable style. 12 - The code should be written in a portable generic way, that will benefit the whole community, and … 13 - The code should be secure, and will be reviewed from a security point of view as well. 16 --------------------- 17 …[start a discussion](https://lists.trustedfirmware.org/mailman/listinfo/mbed-tls) around a feature… 22 1. All new files should include the [Apache-2.0](https://spdx.org/licenses/Apache-2.0.html) standar… [all …]
|
/third_party/node/test/ |
D | README.md | 1 # Node.js Core Tests 5 For a detailed guide on how to write tests in this 6 directory, see [the guide on writing tests](../doc/guides/writing-tests.md). 8 On how to run tests in this directory, see 9 [the contributing guide](../doc/guides/contributing/pull-requests.md#step-6-test). 11 For the tests to run on Windows, be sure to clone Node.js source code with the 17 | ---------------- | ---------- | --------------- | 18 | `abort` | Yes | Tests that use `--abort-on-uncaught-exception` and other situatio… 19 …`addons` | Yes | Tests for [addon](https://nodejs.org/api/addons.html) functionalit… 20 | `async-hooks` | Yes | Tests for [async_hooks](https://nodejs.org/api/async_hooks.html) f… [all …]
|
/third_party/boost/libs/math/doc/overview/ |
D | overview.qbk | 7 Utility functions for dealing with floating-point arithmetic, includes functions 11 [h4 Specific Width Floating-Point Types] 13 A set of `typedef`s similar to those provided by `<cstdint>` but for floating-point types. 17 A wide range of high-precision constants ranging from various multiples of [pi], fractions, through… 19 These are of course usable from template code, or as non-templates with a simplified interface if t… 25 upon which higher level statistical tests can be built. 41 how the library is used to conduct statistical tests. 60 are fully generic and support the use of arbitrary "real-number" types, 62 although they are optimised for use with types with known-about 70 A comprehensive set of root finding algorithms over the real-line, both with and without derivative… [all …]
|
/third_party/nghttp2/ |
D | .travis.yml | 3 - linux 5 - clang 6 - gcc 9 - CI_BUILD=cmake 10 - CI_BUILD=autotools 13 - os: osx 22 - ubuntu-toolchain-r-test 24 - g++-8 25 - autoconf 26 - automake [all …]
|
/third_party/skia/third_party/externals/swiftshader/docs/ |
D | Regres.md | 1 # Regres - SwiftShader automated testing 5 Regres is a collection of tools to perform [dEQP](https://github.com/KhronosGroup/VK-GL-CTS) 6 presubmit and continuous integration testing and code coverage evaluation for 11 * [Presubmit testing](#presubmit-testing) - An automatic OpenGL|ES and Vulkan 13 * [Continuous integration testing](#daily-run-continuous-integration-testing) - 16 …[swiftshader-regres.github.io/swiftshader-coverage](https://swiftshader-regres.github.io/swiftshad… 17 * [Local dEQP test runner](#local-dEQP-test-runner) Provides a local tool for 18 efficiently running a number of dEQP tests based wildcard or regex name 21 …ot directory is at [`<swiftshader>/tests/regres/`](https://cs.opensource.google/swiftshader/SwiftS… 25 Regres monitors changes that have been [put up for review with Gerrit](https://swiftshader-review.g… [all …]
|
/third_party/boost/libs/math/ |
D | README.md | 1 …st Math Library [](https://… 18 These are of course usable from template code, or as non-templates with a simplified interface if t… 22 …rehensive set of statistical distributions, upon which higher level statistical tests can be built. 26 …with a series of worked examples illustrating how the library is used to conduct statistical tests. 34 All the implementations are fully generic and support the use of arbitrary "real-number" types, inc… 40 A comprehensive set of root-finding algorithms over the real line, both with derivatives and deriva… 50 … rational interpolation, compactly supported quadartic, cubic, and quintic B-splines, the Chebyshe… 52 ### Numerical Integration and Differentiation 54 …integration (trapezoidal, Gauss-Legendre, Gauss-Kronrod, Gauss-Chebyshev, double-exponential, and … 56 The integration routines are usable for functions returning complex results - and hence can be used… [all …]
|
/third_party/gstreamer/gstplugins_good/ |
D | configure.ac | 6 dnl releases only do -Wall, git and prerelease does -Werror too 8 AC_INIT([GStreamer Good Plug-ins],[1.16.2],[http://bugzilla.gnome.org/enter_bug.cgi?product=GStream… 13 AM_INIT_AUTOMAKE([-Wno-portability 1.14 no-dist-gzip dist-xz tar-ustar subdir-objects]) 42 dnl to allow side-by-side installation of different API versions 61 AC_SUBST(ACLOCAL_AMFLAGS, "-I m4 -I common/m4") 67 AG_GST_GETTEXT([gst-plugins-good-$GST_API_VERSION]) 97 dnl common/m4/gst-arch.m4 127 dnl check if the compiler supports '-c' and '-o' options 152 LIBRT="-lrt" 184 dnl check if we have GCC inline-asm [all …]
|
/third_party/skia/third_party/externals/angle2/src/tests/test_utils/runner/ |
D | README.md | 9 * multi-process execution 11 ## Command-Line Arguments 14 following additional command-line arguments: 16 * `--batch-size` limits the number of tests to run in each batch 17 * `--batch-timeout` limits the amount of time spent in each batch 18 * `--bot-mode` enables multi-process execution and test batching 19 * `--debug-test-groups` dumps the test config categories when using `bot-mode` 20 * `--filter-file` allows passing a larger `gtest_filter` via a file 21 * `--histogram-json-file` outputs a [formatted JSON file][HistogramSet] for perf dashboards 22 * `--max-processes` limits the number of simuntaneous processes [all …]
|
/third_party/flutter/flutter/dev/bots/ |
D | test.dart | 2 // Use of this source code is governed by a BSD-style license that can be 28 final String dart = path.join(flutterRoot, 'bin', 'cache', 'dart-sdk', 'bin', Platform.isWindows ? … 29 final String pub = path.join(flutterRoot, 'bin', 'cache', 'dart-sdk', 'bin', Platform.isWindows ? '… 30 final String pubCache = path.join(flutterRoot, '.pub-cache'); 39 'tests': _runTests, 54 /// script with the parameter --local-engine=host_debug_unopt to 60 /// SHARD=tool_tests bin/cache/dart-sdk/bin/dart dev/bots/test.dart 61 /// bin/cache/dart-sdk/bin/dart dev/bots/test.dart --local-engine=host_debug_unopt 84 // Verify that the tests actually return failure on failure and success on 87 // We run the "pass" and "fail" smoke tests first, and alone, because those [all …]
|
/third_party/boost/libs/math/test/ |
D | test_lambert_w_integrals_double.cpp | 10 //! \brief quadrature tests that cover the whole range of the Lambert W0 function. 51 #include <boost/math/constants/constants.hpp> // for integral tests. 52 #include <boost/math/quadrature/tanh_sinh.hpp> // for integral tests. 53 #include <boost/math/quadrature/exp_sinh.hpp> // for integral tests. 101 …std::cout << "Unexpected exception thrown in integration code at abscissa (x): " << x << "." << st… in debug_integration_proc() 105 …std::cout << "Unexpected non-finite result in integration code at abscissa (x): " << x << "." << s… in debug_integration_proc() 110 …std::cout << "Unexpected non-finite result in integration code at abscissa (x): " << x << "." << s… in debug_integration_proc() 123 …// file:///I:/modular-boost/libs/math/doc/html/math_toolkit/quadrature/double_exponential/de_tanh_… in test_integrals() 126 std::cout << "Integration of type " << typeid(Real).name() << std::endl; in test_integrals() 133 auto f = [](Real z)->Real in test_integrals() [all …]
|
D | test_lambert_w_integrals_float128.cpp | 10 //! \brief quadrature tests that cover the whole range of the Lambert W0 function. 55 #include <boost/math/constants/constants.hpp> // for integral tests. 56 #include <boost/math/quadrature/tanh_sinh.hpp> // for integral tests. 57 #include <boost/math/quadrature/exp_sinh.hpp> // for integral tests. 105 …std::cout << "Unexpected exception thrown in integration code at abscissa (x): " << x << "." << st… in debug_integration_proc() 109 …std::cout << "Unexpected non-finite result in integration code at abscissa (x): " << x << "." << s… in debug_integration_proc() 114 …std::cout << "Unexpected non-finite result in integration code at abscissa (x): " << x << "." << s… in debug_integration_proc() 127 …// file:///I:/modular-boost/libs/math/doc/html/math_toolkit/quadrature/double_exponential/de_tanh_… in test_integrals() 130 std::cout << "Integration of type " << typeid(Real).name() << std::endl; in test_integrals() 137 auto f = [](Real z)->Real in test_integrals() [all …]
|