/aosp_15_r20/frameworks/opt/setupwizard/tools/gradle/ |
D | dist-unit-tests.gradle | 5 * - If a non-dist build is run with test, it will run the normal unit tests, failing the build if 7 * - If a dist build is run with test (e.g. ./gradlew dist test), the build will ignore any test 9 * dist/host-test-reports for consumption by TradeFed. 15 // If unit tests are run as part of the build, dist the test XML reports to host-test-reports/*.zip 16 android.unitTestVariants.all { variant -> 18 gradle.taskGraph.whenReady { taskGraph -> 34 // Copy the test reports to dist/host-test-reports 37 dist.file zipTask.archivePath.path, "host-test-reports/${zipTask.archiveName}" 42 * The section below adds code coverage to all the unitTest targets. By default, the jacoco plugin 49 // Fix robolectric tests reporting 0 coverage on newer versions of the plugin. [all …]
|
/aosp_15_r20/external/rust/android-crates-io/crates/libz-sys/src/zlib-ng/test/pigz/ |
D | CMakeLists.txt | 1 # CMakeLists.txt -- Build madler/pigz against zlib variant 10 # https://github.com/zlib-ng/pigzbench/tree/master/pigz/win 13 # WITH_CODE_COVERAGE - Enable code coverage reporting 14 # WITH_THREADS - Enable threading support 15 # PIGZ_ENABLE_TESTS - Enable adding unit tests 16 # PIGZ_VERSION - Set the version of pigz to build 17 # ZLIB_ROOT - Path to the zlib source directory 18 # PTHREADS4W_ROOT - Path to pthreads4w source directory on Windows. 27 include(../../cmake/detect-coverage.cmake) 29 option(WITH_CODE_COVERAGE "Enable code coverage reporting" OFF) [all …]
|
/aosp_15_r20/external/jacoco/org.jacoco.doc/docroot/doc/ |
H A D | maven.html | 1 <?xml version="1.0" encoding="UTF-8" ?> 2 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-st… 5 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> 6 <link rel="stylesheet" href="resources/doc.css" charset="UTF-8" type="text/css" /> 7 …<link rel="stylesheet" href="../coverage/jacoco-resources/prettify.css" charset="UTF-8" type="text… 9 <script type="text/javascript" src="../coverage/jacoco-resources/prettify.js"></script> 10 <title>JaCoCo - Maven Plug-in</title> 17 <span class="el_source">Maven Plug-in</span> 21 <h1>Maven Plug-in</h1> 24 The JaCoCo <a href="http://maven.apache.org/">Maven</a> plug-in provides the [all …]
|
/aosp_15_r20/external/pcre/ |
H A D | Makefile.am | 3 AUTOMAKE_OPTIONS = subdir-objects 4 ACLOCAL_AMFLAGS = -I m4 6 ## This seems to have become necessary for building in non-source directory. 8 AM_CPPFLAGS="-I$(srcdir)/src" 20 doc/pcre2-config.txt \ 25 doc/html/NON-AUTOTOOLS-BUILD.txt \ 28 doc/html/pcre2-config.html \ 127 doc/pcre2-config.1 \ 229 # Unit tests you want to run when people type 'make check'. 230 # TESTS is for binary unit tests, check_SCRIPTS for script-based tests [all …]
|
/aosp_15_r20/external/aws-sdk-java-v2/test/tests-coverage-reporting/ |
H A D | pom.xml | 1 <?xml version="1.0" encoding="UTF-8"?> 2 <!-- 15 --> 18 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 19 …xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 21 <artifactId>aws-sdk-java-pom</artifactId> 28 <artifactId>tests-coverage-reporting</artifactId> 29 <name>AWS Java SDK :: Test :: Tests Coverage Reporting</name> 30 <description>Used to aggregate integration and unit tests coverage reports 41 <artifactId>checksums-spi</artifactId> [all …]
|
/aosp_15_r20/prebuilts/go/linux-x86/src/cmd/compile/ |
D | README.md | 1 <!--- 3 // Use of this source code is governed by a BSD-style 5 --> 13 You may sometimes hear the terms "front-end" and "back-end" when referring to 15 phases we are going to list here. A third term, "middle-end", often refers to 39 which is used for error reporting and the creation of debugging information. 86 2. It desugars higher-level Go constructs into more primitive ones. For example, 96 lower-level intermediate representation with specific properties that make it 102 code on a case-by-case basis. 108 historical reasons, but the long-term plan is to move all of them here. [all …]
|
/aosp_15_r20/external/grpc-grpc/src/php/ext/grpc/ |
H A D | config.m4 | 2 [ --enable-grpc Enable grpc support]) 4 PHP_ARG_ENABLE(coverage, whether to include code coverage symbols, 5 [ --enable-coverage Enable coverage support], no, no) 7 PHP_ARG_ENABLE(tests, whether to compile helper methods for tests, 8 [ --enable-tests Enable tests methods], no, no) 10 dnl Check whether to enable tests 12 CPPFLAGS="$CPPFLAGS -DGRPC_PHP_DEBUG" 16 dnl Write more examples of tests here... 18 dnl # --with-grpc -> check with-path 21 if test -r $PHP_GRPC/$SEARCH_FOR; then # path given as parameter [all …]
|
/aosp_15_r20/external/vixl/tools/ |
H A D | code_coverage.sh | 29 # This code coverage script assumes a Linux-like environment, and has been 34 echo "On Ubuntu, install it with 'sudo apt-get install pv'" 42 RUNNER="$BUILDDIR/test/test-runner" 44 # Build with code coverage instrumentation enabled. 45 scons mode=debug coverage=on target=a64 all -j8 47 if [ ! -f "$RUNNER" ]; then 49 echo "No test-runner for profiling." 53 # Count the number of tests. 54 tests=`$RUNNER --list | wc -l` 56 # Generate a raw profile for a run using all tests. [all …]
|
/aosp_15_r20/external/google-fruit/ |
H A D | CONTRIBUTING.md | 7 [here](https://github.com/google/fruit/wiki/install#building-fruit-manually). 20 `CMakeLists.txt` and `BUILD` files, to make sure that Fruit keeps building (and passing its tests) … 24 …o build a development version of Fruit using CMake (with all assertions enabled) and run the tests: 28 mkdir build-debug 29 cd build-debug 30 cmake .. -DCMAKE_BUILD_TYPE=Debug -DFRUIT_ENABLE_CLANG_TIDY=TRUE -DCMAKE_CXX_FLAGS="-Werror -DFRUIT… 31 make -j 16 32 cd tests 33 py.test-3 -n auto 42 Fruit tests run as Github actions run in various configurations/environments, notably: [all …]
|
/aosp_15_r20/external/python/jinja/ |
D | CONTRIBUTING.rst | 8 ----------------- 15 - The ``#get-help`` channel on our Discord chat: 17 - The mailing list [email protected] for long term discussion or larger 19 - Ask on `Stack Overflow`_. Search with Google first using: 25 Reporting issues 26 ---------------- 30 - Describe what you expected to happen. 31 - If possible, include a `minimal reproducible example`_ to help us 34 - Describe what actually happened. Include the full traceback if there 36 - List your Python and Jinja versions. If possible, check if this [all …]
|
/aosp_15_r20/packages/modules/Bluetooth/system/blueberry/tests/gd/cert/ |
D | gd_device.py | 3 # Copyright 2019 - The Android Open Source Project 9 # http://www.apache.org/licenses/LICENSE-2.0 34 from blueberry.tests.gd.cert import asserts 35 from blueberry.tests.gd.cert.adb import BlueberryAdbProxy 36 from blueberry.tests.gd.cert.adb import UTF_8 37 from blueberry.tests.gd.cert.async_subprocess_logger import AsyncSubprocessLogger 38 from blueberry.tests.gd.cert.context import get_current_context 39 from blueberry.tests.gd.cert.logging_client_interceptor import LoggingClientInterceptor 40 from blueberry.tests.gd.cert.os_utils import get_gd_root 41 from blueberry.tests.gd.cert.os_utils import read_crash_snippet_and_log_tail [all …]
|
/aosp_15_r20/external/AFLplusplus/docs/ |
H A D | Changelog.md | 7 - afl-fuzz: 8 - default power schedule is now EXPLORE, due a fix in fast schedules 10 - fixed minor issues in the mutation engine, thanks to @futhewo for 11 reporting! 12 - better deterministic fuzzing is now available, benchmarks have shown 13 to improve fuzzing. Enable with -D. Thanks to @kdsjZh for the PR! 14 - afl-cc: 15 - large rewrite by @SonicStark which fixes a few corner cases, thanks! 16 - LTO mode now requires llvm 12+ 17 - workaround for ASAN with gcc_plugin mode [all …]
|
/aosp_15_r20/external/AFLplusplus/ |
H A D | Changelog.md | 7 - afl-fuzz: 8 - default power schedule is now EXPLORE, due a fix in fast schedules 10 - fixed minor issues in the mutation engine, thanks to @futhewo for 11 reporting! 12 - better deterministic fuzzing is now available, benchmarks have shown 13 to improve fuzzing. Enable with -D. Thanks to @kdsjZh for the PR! 14 - afl-cc: 15 - large rewrite by @SonicStark which fixes a few corner cases, thanks! 16 - LTO mode now requires llvm 12+ 17 - workaround for ASAN with gcc_plugin mode [all …]
|
/aosp_15_r20/external/cronet/third_party/google_benchmark/src/ |
H A D | CMakeLists.txt | 10 option(BENCHMARK_ENABLE_WERROR "Build Release candidates with -Werror." ON) 11 option(BENCHMARK_FORCE_WERROR "Build Release candidates with -Werror regardless of compiler issues.… 14 # PGC++ maybe reporting false positives. 27 …set(BENCHMARK_BUILD_32_BITS OFF CACHE BOOL "Build a 32 bit version of the library - unsupported wh… 35 option(BENCHMARK_DOWNLOAD_DEPENDENCIES "Allow the downloading and in-tree building of unmet depende… 37 # This option can be used to disable building and running unit tests which depend on gtest 39 option(BENCHMARK_ENABLE_GTEST_TESTS "Enable building the unit tests which depend on gtest" ON) 50 # cross-compilation (e.g. Host=x86_64, target=aarch64) requires using the 52 # See https://gitlab.kitware.com/cmake/cmake/-/issues/15170 63 if (${CMAKE_BUILD_TYPE_LOWER} MATCHES "coverage") [all …]
|
/aosp_15_r20/external/llvm/utils/lit/tests/ |
H A D | lit.cfg | 1 # -*- Python -*- 13 # testFormat: The test format to use to interpret tests. 22 # test_source_root: The root path where tests are located. 32 src_root, 'tests', 'Inputs'))) 37 # Enable coverage.py reporting, assuming the coverage module has been installed 39 if lit_config.params.get('check-coverage', None): 51 config.available_features.add("python-psutil") 53 lit_config.warning('Could not import psutil. Some tests will be skipped and' 54 ' the --timeout command line argument will not work.')
|
/aosp_15_r20/tools/tradefederation/core/test_framework/com/android/tradefed/testtype/ |
D | InstrumentationTest.java | 8 * http://www.apache.org/licenses/LICENSE-2.0 97 /** max number of attempts to collect list of tests in package */ 106 /** default timeout for tests collection */ 111 private static final String SKIP_TESTS_REASON_KEY = "skip-tests-reason"; 134 name = "test-package", 136 "Only run tests within this specific java package. " 137 + "Will be ignored if --class is set.") 142 …oper.android.com/training/testing/instrumented-tests/androidx-test-libraries/runner#use-android">A… 143 * * </a> documentation for more details on how AndroidX-Orchestrator works and the 150 + " androidx-orchestrator.") [all …]
|
/aosp_15_r20/external/nullaway/ |
H A D | CHANGELOG.md | 4 --------------- 13 --------------- 18 * Fix backwards-incompatible calls to ASTHelpers.hasDirectAnnotationWithSimpleName (#894) 22 --------------- 25 - Update to WALA 1.6.3 (#887) 26 - Update to Error Prone 2.24.1 (#888) 29 --------------- 32 - Main use case is NullAwayAnnotator 36 - JSpecify: In generics code, get rid of checks for ClassType (#863) 40 --------------- [all …]
|
/aosp_15_r20/external/google-benchmark/ |
H A D | CMakeLists.txt | 10 option(BENCHMARK_ENABLE_WERROR "Build Release candidates with -Werror." ON) 11 option(BENCHMARK_FORCE_WERROR "Build Release candidates with -Werror regardless of compiler issues.… 14 # PGC++ maybe reporting false positives. 27 …set(BENCHMARK_BUILD_32_BITS OFF CACHE BOOL "Build a 32 bit version of the library - unsupported wh… 35 option(BENCHMARK_DOWNLOAD_DEPENDENCIES "Allow the downloading and in-tree building of unmet depende… 37 # This option can be used to disable building and running unit tests which depend on gtest 39 option(BENCHMARK_ENABLE_GTEST_TESTS "Enable building the unit tests which depend on gtest" ON) 50 # cross-compilation (e.g. Host=x86_64, target=aarch64) requires using the 52 # See https://gitlab.kitware.com/cmake/cmake/-/issues/15170 63 if (${CMAKE_BUILD_TYPE_LOWER} MATCHES "coverage") [all …]
|
/aosp_15_r20/external/mesa3d/docs/drivers/ |
H A D | lima.rst | 5 (Mali-4xx) embedded GPUs from ARM. It’s a reverse-engineered, 6 community-developed driver, and is not endorsed by ARM. Lima was 12 Mali-400 Utgard Supported 13 Mali-450 Utgard Supported 14 Mali-470 Utgard Unsupported 21 display and has little to do with display-related issues. 24 separate `display driver <#display-drivers>`__ is also required, which 29 -------------- 41 Check the `known hardware limitations <#known-hardware-limitations>`__ 48 --------------- [all …]
|
/aosp_15_r20/external/apache-xml/test/java/xdocs/sources/tests/ |
H A D | overview.xml | 3 <!-- 12 * http://www.apache.org/licenses/LICENSE-2.0 19 --> 22 <li><link anchor="purpose">Purpose of these tests</link></li> 23 <li><link anchor="brief-overview">Brief overview of testing methods</link></li> 24 <li><link anchor="dir-map">Directory Structure</link></li> 25 <li><link anchor="test-map">Listing of Java tests and drivers</link></li> 26 <li><link anchor="credits">Credits for the tests</link></li> 30 <s2 title="Purpose of these tests"> 31 <p>These tests are provided for Xalan contributors to evaluate the impact of code changes. [all …]
|
/aosp_15_r20/external/jacoco/jacoco-maven-plugin/src/org/jacoco/maven/ |
H A D | AbstractReportMojo.java | 5 * http://www.eclipse.org/legal/epl-2.0 7 * SPDX-License-Identifier: EPL-2.0 10 * Evgeny Mandrikov - initial API and implementation 11 * troosan - add support for format selection 26 import org.apache.maven.reporting.MavenMultiPageReport; 27 import org.apache.maven.reporting.MavenReportException; 32 * Base class for creating a code coverage report for tests of a single project 41 @Parameter(property = "project.reporting.outputEncoding", defaultValue = "UTF-8") 72 @Parameter(property = "project.build.sourceEncoding", defaultValue = "UTF-8") 102 return getName(locale) + " Coverage Report."; in getDescription()
|
/aosp_15_r20/external/python/cpython3/Lib/idlelib/ |
D | NEWS.txt | 3 Released after 2022-10-24 7 gh-104719: Remove IDLE's modification of tokenize.tabsize and test 10 gh-104499: Fix completions for Tk Aqua 8.7 (currently blank). 12 gh-104486: Make About print both tcl and tk versions if different, 15 gh-88496 Fix IDLE test hang on macOS. 17 gh-103314 Support sys.last_exc after exceptions in Shell. 23 Released on 2022-10-24 26 gh-97527: Fix a bug in the previous bugfix that caused IDLE to not 31 gh-65802: Document handling of extensions in Save As dialogs. 33 gh-95191: Include prompts when saving Shell (interactive input/output). [all …]
|
/aosp_15_r20/external/grpc-grpc/src/python/grpcio_tests/tests/ |
H A D | _result.py | 7 # http://www.apache.org/licenses/LICENSE-2.0 24 import coverage 26 from tests import _loader 40 name (str or None): A human-readable name of the test case. 130 Uses CaseResult objects to store test-case results, providing additional 238 """Extension to AugmentedResult adding coverage.py support per test.\ 241 coverage_context (coverage.Coverage): coverage.py management object. 252 Additionally initializes and begins code coverage tracking.""" 254 self.coverage_context = coverage.Coverage(data_suffix=True) 260 Additionally stops and deinitializes code coverage tracking.""" [all …]
|
/aosp_15_r20/external/pcre/doc/ |
H A D | pcre2build.3 | 3 PCRE2 - Perl-compatible regular expressions (revised API) 10 the library in Unix-like environments using the applications known as 23 .\" HTML <a href="NON-AUTOTOOLS-BUILD.txt"> 25 \fBNON-AUTOTOOLS-BUILD\fP. 32 file if you are building in a non-Unix-like environment. 35 .SH "PCRE2 BUILD-TIME OPTIONS" 42 same options can be selected in both Unix-like and non-Unix-like environments 48 .\" HTML <a href="NON-AUTOTOOLS-BUILD.txt"> 50 \fBNON-AUTOTOOLS-BUILD\fP. 57 ./configure --help [all …]
|
/aosp_15_r20/external/angle/build/config/ios/ |
H A D | ios_test_runner_wrapper.gni | 2 # Use of this source code is governed by a BSD-style license that can be 5 import("//build/config/coverage/coverage.gni") 17 # (optional) number of ios simulator clones to execute tests on 25 # (optional) list of target non-linked labels 37 # (optional) number of ios simulator clones to execute tests in parallel. not 70 rebase_path("//Runtime-ios-", root_build_dir) 72 # --out-dir argument is specified in gn_isolate_map.pyl because 75 "--xcode-path", 77 "--mac-toolchain-cmd", 79 "--runtime-cache-prefix", [all …]
|