Home
last modified time | relevance | path

Searched +full:msan +full:- +full:test +full:- +full:zstd (Results 1 – 7 of 7) sorted by relevance

/external/zstd/.github/workflows/
Ddev-long-tests.yml1 name: dev-long-tests
5 group: long-${{ github.ref }}
6 cancel-in-progress: true
13 make-all:
14 runs-on: ubuntu-latest
16 - uses: actions/checkout@v2
17 - name: make all
21 make-test:
22 runs-on: ubuntu-latest
27 - uses: actions/checkout@v2
[all …]
/external/zstd/tests/fuzz/
Dfuzz.py7 # 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.
35 ZSTD = 1 variable in FrameType
40 def __init__(self, input_type, frame_type=FrameType.ZSTD):
77 CFLAGS = os.environ.get('CFLAGS', '-O3')
80 MFLAGS = os.environ.get('MFLAGS', '-j')
84 AFL_FUZZ = os.environ.get('AFL_FUZZ', 'afl-fuzz')
87 ZSTD = os.environ.get('ZSTD', abs_join(FUZZ_DIR, '..', '..', 'zstd')) variable
152 san_flags = ','.join(re.findall('-fsanitize=((?:[a-z]+,?)+)', flags))
153 nosan_flags = ','.join(re.findall('-fno-sanitize=((?:[a-z]+,?)+)', flags))
[all …]
DREADME.md4 Zstd provides a fuzz corpus for each target that can be downloaded with
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`.
[all …]
/external/zstd/
DTESTING.md8 -----------
11 - Compilation on all supported targets (x86, x86_64, ARM, AArch64, PowerPC, and PowerPC64)
12 - Compilation on various versions of gcc, clang, and g++
13 - `tests/playTests.sh` on x86_64, without the tests on long data (CLI tests)
14 - Small tests (`tests/legacy.c`, `tests/longmatch.c`) on x64_64
17 ------------
20 - The following tests run with UBsan and Asan on x86_64 and x86, as well as with
21 Msan on x86_64
22 - `tests/playTests.sh --test-large-data`
23 - Fuzzer tests: `tests/fuzzer.c`, `tests/zstreamtest.c`, and `tests/decodecorpus.c`
[all …]
DMakefile2 # Copyright (c) 2015-2021, Yann Collet, Facebook, Inc.
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
[all …]
/external/libabigail/
Dconfigure.ac1 # SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
12 AC_CONFIG_AUX_DIR([build-aux])
20 dnl http://www.gnu.org/software/autoconf-archive
23 m4_include([autoconf-archive/ax_check_python_modules.m4])
26 m4_include([autoconf-archive/ax_compare_version.m4])
27 m4_include([autoconf-archive/ax_prog_python_version.m4])
29 dnl This one is to be able to run "make check-valgrind"
31 m4_include([autoconf-archive/ax_valgrind_check.m4])
33 AM_INIT_AUTOMAKE([1.11.1 foreign subdir-objects tar-ustar parallel-tests])
58 dnl $ configure VERSION_SUFFIX="-dev"
[all …]
DChangeLog1 2021-10-04 Dodji Seketeli <dodji@redhat.com>
6 2021-09-23 Dodji Seketeli <dodji@redhat.com>
8 Bug 27086 - Consider all C++ virtual destructors when there are many
9 * src/abg-dwarf-reader.c (build_or_get_fn_decl_if_not_suppressed):
10 Do not try to re-use a virtual destructor of a class, based on its
13 * tests/data/test-types-stability/PR27086-libstdc++.so.6.0.26:
14 Add new binary test input.
15 * tests/data/Makefile.am: Add the new test input to source
17 * tests/test-types-stability.cc (elf_paths): Add the test input
20 2021-09-23 Dodji Seketeli <dodji@redhat.com>
[all …]