Searched +full:asan +full:- +full:ubsan +full:- +full:regression (Results 1 – 25 of 28) sorted by relevance
12
| /external/zstd/.github/workflows/ |
| D | dev-long-tests.yml | 1 name: dev-long-tests 5 group: long-${{ github.ref }} 6 cancel-in-progress: true 12 permissions: read-all 15 make-all: 16 runs-on: ubuntu-latest 18 - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # tag=v4.1.1 19 - name: make all 23 make-test: 24 runs-on: ubuntu-latest [all …]
|
| /external/zstd/tests/fuzz/ |
| D | README.md | 16 Run `./fuzz.py -h` for the commands and run `./fuzz.py COMMAND -h` for 24 make -C ../tests decodecorpus 28 By default it outputs 100 samples, each at most 8KB into `corpora/TARGET-seed`, 29 but that can be configured with the `--number`, `--max-size-log` and `--seed` 35 `--cc`, `--cflags`, etc. 37 `--lib-fuzzing-engine`, the default is `libregression.a`. 39 `--enable-fuzzer`. 40 It has flags that can easily set up sanitizers `--enable-{a,ub,m}san`, and 41 coverage instrumentation `--enable-coverage`. 42 It sets sane defaults which can be overridden with flags `--debug`, [all …]
|
| D | fuzz.py | 7 # This source code is licensed under both the BSD-style license (found in the 10 # You may select, at your option, one of the above-listed licenses. 79 CFLAGS = os.environ.get('CFLAGS', '-O3') 82 MFLAGS = os.environ.get('MFLAGS', '-j') 87 AFL_FUZZ = os.environ.get('AFL_FUZZ', 'afl-fuzz') 155 san_flags = ','.join(re.findall('-fsanitize=((?:[a-z]+,?)+)', flags)) 156 nosan_flags = ','.join(re.findall('-fno-sanitize=((?:[a-z]+,?)+)', flags)) 160 raise RuntimeError('-fno-sanitize={s} and -fsanitize={s} passed'. 171 args.asan = set_sanitizer('address', args.asan, san, nosan) 173 args.ubsan = set_sanitizer('undefined', args.ubsan, san, nosan) [all …]
|
| /external/compiler-rt/test/ |
| D | CMakeLists.txt | 25 clang clang-headers FileCheck count not llvm-config llvm-nm llvm-objdump 26 llvm-symbolizer compiler-rt-headers sancov) 43 add_subdirectory(asan) 64 add_subdirectory(ubsan) 66 # CFI tests require diagnostic mode, which is implemented in UBSan. 86 add_lit_target(check-all 87 "Running all regression tests"
|
| /external/expat/.github/workflows/ |
| D | fuzzing.yml | 30 name: Run fuzzing regression tests 36 - cron: '0 2 * * 5' # Every Friday at 2am 44 name: Run fuzzing regression tests 45 runs-on: ubuntu-22.04 47 - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 49 - name: Install Clang 18 50 run: |- 51 set -x 52 source /etc/os-release 53 wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | sudo apt-key add - [all …]
|
| /external/oss-fuzz/docs/advanced-topics/ |
| D | ideal_integration.md | 1 --- 6 permalink: /advanced-topics/ideal-integration/ 7 --- 9 # Ideal integration with OSS-Fuzz 13 implement and maintain fuzz targets or integrate them with OSS-Fuzz in the same 19 [example](https://github.com/google/oss-fuzz/tree/master/projects/example/my-api-repo) 22 - TOC 24 --- 28 Every [fuzz target](http://libfuzzer.info/#fuzz-target): 29 * Is [maintained by code owners](#fuzz-target) in their RCS (Git, SVN, etc). [all …]
|
| /external/zstd/ |
| D | Makefile | 5 # This source code is licensed under both the BSD-style license (found in the 8 # You may select, at your option, one of the above-listed licenses. 24 # When cross-compiling from linux to windows, you might 28 # Note: mingw-w64 build from linux to windows does not 40 ## default: Build lib-release and zstd-release 42 default: lib-release zstd-release 53 $(Q)$(MAKE) -C $(PRGDIR) all 54 $(Q)$(MAKE) -C $(TESTDIR) all 58 $(MAKE) -C $(PRGDIR) zstd32 59 $(MAKE) -C $(TESTDIR) all32 [all …]
|
| /external/llvm/docs/ |
| D | LibFuzzer.rst | 2 libFuzzer – a library for coverage-guided fuzz testing. 11 LibFuzzer is a library for in-process, coverage-guided, evolutionary fuzzing 15 all of its fuzzing inside a single process. This in-process fuzzing can be more 17 for process start-up. 34 (If `building Clang from trunk`_ is too time-consuming or difficult, then 38 .. code-block:: console 47 ``./third_party/llvm-build/Release+Asserts/bin/clang``) 65 -------- 70 .. code-block:: c++ 75 return 0; // Non-zero return values are reserved for future use. [all …]
|
| /external/cronet/third_party/libc++/src/utils/ci/ |
| D | run-buildbot | 2 #===----------------------------------------------------------------------===## 6 # SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 8 #===----------------------------------------------------------------------===## 10 set -ex 11 set -o pipefail 23 [-h|--help] Display this help and exit. 25 --llvm-root <DIR> Path to the root of the LLVM monorepo. By default, we try 28 --build-dir <DIR> The directory to use for building the library. By default, 29 this is '<llvm-root>/build/<builder>'. 31 --osx-roots <DIR> Path to pre-downloaded macOS dylibs. By default, we download [all …]
|
| /external/mbedtls/tests/scripts/ |
| D | all.sh | 6 # SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later 15 # ------- 20 # --------------- 32 # * Basic Unix tools (Windows users note: a Unix-style find must be before 37 # * GCC and Clang (recent enough for using ASan with gcc and MemSan with clang, or valgrind) 39 # * arm-gcc and mingw-gcc 40 # * ArmCC 5 and ArmCC 6, unless invoked with --no-armcc 50 # The behavior on an error depends on whether --keep-going (alias -k) 52 # * Without --keep-going: the script stops on the first error without 55 # * With --keep-going: the script runs all requested components and [all …]
|
| /external/libxml2/ |
| D | NEWS | 12 - xmlCtxtSetErrorHandler 13 - xmlXPathSetErrorHandler 14 - xmlXIncludeSetErrorHandler 16 This makes it possible to register per-context error handlers without 29 to be enabled by passing --with-zlib, --with-lzma or --with-html to 30 configure. In legacy mode (--with-legacy) these options are enabled 42 - htmlDefaultSAXHandler 43 - oldXMLWDcompatibility 44 - xmlDefaultSAXHandler 45 - xmlDefaultSAXLocator [all …]
|
| /external/cronet/third_party/libxml/src/ |
| D | NEWS | 11 Starting with this release, it should be enough to add the --with-legacy 16 libxml2 will now store global variables in thread-local storage if supported 43 - threads: Fix --with-thread-alloc 44 - xinclude: Fix 'last' pointer in xmlXIncludeCopyNode 48 - globals: Deprecate xmlLastError 49 - parser: Deprecate global parser options 50 - win32: Deprecate old Windows build system 54 - parser: Stop switching to ISO-8859-1 on encoding errors 55 - parser: Support encoded external PEs in entity values 56 - string: Fix UTF-8 validation in xmlGetUTF8Char [all …]
|
| /external/AFLplusplus/ |
| 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 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 18 - instrumentation: [all …]
|
| /external/AFLplusplus/docs/ |
| 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 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 18 - instrumentation: [all …]
|
| /external/mesa3d/docs/relnotes/ |
| D | 22.0.0.rst | 1 Mesa 22.0.0 Release Notes / 2022-03-09 20 --------------- 24 e6c41928b5b9917485bd67cec22d15e62cad7a358bf4c711a647979987601250 mesa-22.0.0.tar.xz 28 ------------ 30 - lavapipe,radv,anv KHR_dynamic_rendering 31 - radv EXT_image_view_min_lod 32 - VK_KHR_synchronization2 on RADV. 33 - OpenSWR has been moved to the Amber branch 34 - radeonsi, zink ARB_sparse_texture 35 - d3d12 GLES3.1 (shader storage buffers, images, compute, indirect draw, draw params, ARB_framebuff… [all …]
|
| D | 21.3.0.rst | 1 Mesa 21.3.0 Release Notes / 2021-11-17 20 --------------- 24 a2753c09deef0ba14d35ae8a2ceff3fe5cd13698928c7bb62c2ec8736eb09ce1 mesa-21.3.0.tar.xz 28 ------------ 30 - VK_EXT_color_write_enable on lavapipe 31 - GL_ARB_texture_filter_anisotropic in llvmpipe 32 - Anisotropic texture filtering in lavapipe 33 - VK_EXT_shader_atomic_float2 on Intel and RADV. 34 - VK_EXT_vertex_input_dynamic_state on RADV. 35 - VK_KHR_timeline_semaphore on lavapipe [all …]
|
| D | 23.3.0.rst | 1 Mesa 23.3.0 Release Notes / 2023-11-29 20 --------------- 24 50f729dd60ed6335b989095baad81ef5edf7cfdd4b4b48b9b955917cb07d69c5 mesa-23.3.0.tar.xz 28 ----------- 29 - NVK: A Vulkan driver for Nvidia hardware 32 ------------ 33 - VK_EXT_pipeline_robustness on ANV 34 - VK_KHR_maintenance5 on RADV 35 - OpenGL ES 3.1 on Asahi 36 - GL_ARB_compute_shader on Asahi [all …]
|
| D | 21.1.0.rst | 1 Mesa 21.1.0 Release Notes / 2021-05-05 20 --------------- 24 0128f10e22970d3aed3d1034003731f94623015cd9797c07151417649c1b1ff8 mesa-21.1.0.tar.xz 28 ------------ 30 - VK_KHR_workgroup_memory_explicit_layout on Intel, RADV 32 - DRM format modifiers for AMD. 34 - VK_KHR_zero_initialize_workgroup_memory on Intel, RADV 36 - Zink exposes GL 4.6 and ES 3.1 38 - GL_EXT_depth_bounds_test on softpipe, zink 40 - GL_EXT_texture_filter_minmax on nvc0 (gm200+) [all …]
|
| D | 22.3.0.rst | 1 Mesa 22.3.0 Release Notes / 2022-12-02 20 --------------- 24 644bf936584548c2b88762111ad58b4aa3e4688874200e5a4eb74e53ce301746 mesa-22.3.0.tar.xz 28 ------------ 30 - GL_ARB_shader_clock on llvmpipe 31 - VK_KHR_shader_clock on lavapipe 32 - Mesa-DB, the new single file cache type 33 - VK_EXT_attachment_feedback_loop_layout on RADV, lavapipe 34 - VK_KHR_global_priority on RADV 35 - GL_KHR_blend_equation_advanced_coherent on zink [all …]
|
| /external/webp/ |
| D | ChangeLog | 2 cf7c5a5d provide a way to opt-out/override WEBP_NODISCARD 3 cc34288a update ChangeLog (tag: v1.4.0-rc1) 11 07216886 webp-container-spec: fix VP8 chunk ref ('VP8'->'VP8 ') 14 d537cd37 cmake: fix vwebp_sdl compile w/libsdl-org release 16 7b0bc235 man/cwebp.1: add more detail to -partition_limit 21 1bf46358 man/cwebp.1: clarify -pass > 1 behavior w/o -size/-psnr 22 eba03acb webp-container-spec: replace 'above' with 'earlier' 23 a16d30cb webp-container-spec: clarify chunk order requirements 24 8a7e9112 Merge "CMakeLists.txt: apply cmake-format" into main 28 fba7d62e CMakeLists.txt: apply cmake-format [all …]
|
| /external/freetype/docs/oldlogs/ |
| D | ChangeLog.210 | 1 2021-07-18 Werner Lemberg <wl@gnu.org> 7 Tag sources with `VER-2-11-0'. 15 builds/wince/vc2005-ce/index.html, 16 builds/wince/vc2008-ce/index.html, docs/freetype-config.1: 26 * builds/toplevel.mk (dist): Ignore more git-related files. 28 2021-07-17 David Turner <david@freetype.org> 32 The code assumed that if `__SSE2__` is defined, then 64-bit integer 37 64-bit integer types are not available. 41 2021-07-16 Alex Richardson <Alexander.Richardson@cl.cam.ac.uk> 45 * tests/issue-1063/main.c (main): I am building with a build [all …]
|
| /external/protobuf/ |
| D | CHANGES.txt | 1 2022-12-07 version 21.11 (C++/Java/Python/PHP/Objective-C/C#/Ruby) 4 * Fix round-trip bug (#10158) 6 2022-11-29 version 21.10 (C++/Java/Python/PHP/Objective-C/C#/Ruby) 9 * Use bit-field int values in buildPartial to skip work on unset groups of fields. (#10960) 12 …* Fix UPB_LIKELY() for 32-bit Windows builds; update protobuf_deps to point to the current upb 21.… 16 2022-10-26 version 21.9 (C++/Java/Python/PHP/Objective-C/C#/Ruby) 27 2022-10-18 version 21.8 (C++/Java/Python/PHP/Objective-C/C#/Ruby) 30 * Fix for grpc.tools #17995 & protobuf #7474 (handle UTF-8 paths in argumentfile) (#10721) 42 2022-09-29 version 21.7 (C++/Java/Python/PHP/Objective-C/C#/Ruby) 44 * Refactoring java full runtime to reuse sub-message builders and prepare to [all …]
|
| /external/mesa3d/ |
| D | .pick_status.json | 148 "description": "radv: add support for emitting PS_DONE/CS_DONE on GFX6-8", 256 "description": "anv: Skip CCS ambiguate which preceed fast-clears", 292 "description": "freedreno: Skip some batch dependency tracking if !ctx->dirty.", 301 "description": "freedreno: Move framebuffer state checks under a ctx->dirty flag.", 337 "description": "anv: Invalidate the correct AUX-TT entry", 391 "description": "docs: Mark some non-core zink extensions complete", 409 "description": "ci: Add a fractional deqp run of softpipe with asan enabled.", 463 "description": "r300,i915g: Report no shader buffers or images on non-TCL HW.", 499 "description": "gallium/st: lower point-sprites if not supported", 841 "description": "vk-device-select: add device group support", [all …]
|
| /external/sqlite/dist/sqlite-autoconf-3440300/ |
| D | sqlite3.c | 17 ** language. The code for the "sqlite3" command-line shell is also in a 20 ** The content in this amalgamation comes from Fossil check-in 51 ** NO_TEST - The branches on this line are not 56 ** OPTIMIZATION-IF-TRUE - This branch is allowed to always be false 60 ** OPTIMIZATION-IF-FALSE - This branch is allowed to always be true 64 ** PREVENTS-HARMLESS-OVERREAD - This branch prevents a buffer overread 69 ** slash-asterisk...asterisk-slash comment marks, with no spaces between the 144 ** 2015-03-02 182 ** large file support, or if the OS is windows, these should be no-ops. 188 ** Large file support can be disabled using the -DSQLITE_DISABLE_LFS switch [all …]
|
| /external/sqlite/dist/sqlite-autoconf-3440300/orig/ |
| D | sqlite3.c | 17 ** language. The code for the "sqlite3" command-line shell is also in a 20 ** The content in this amalgamation comes from Fossil check-in 51 ** NO_TEST - The branches on this line are not 56 ** OPTIMIZATION-IF-TRUE - This branch is allowed to always be false 60 ** OPTIMIZATION-IF-FALSE - This branch is allowed to always be true 64 ** PREVENTS-HARMLESS-OVERREAD - This branch prevents a buffer overread 69 ** slash-asterisk...asterisk-slash comment marks, with no spaces between the 144 ** 2015-03-02 182 ** large file support, or if the OS is windows, these should be no-ops. 188 ** Large file support can be disabled using the -DSQLITE_DISABLE_LFS switch [all …]
|
12