Home
last modified time | relevance | path

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

/external/zstd/build/meson/tests/
Dmeson.build2 # Copyright (c) 2018-present Dima Krasner <dima@dimakrasner.com>
6 # This source code is licensed under both the BSD-style license (found in the
17 # Test flags
20 FUZZER_FLAGS = ['--no-big-tests']
21 FUZZERTEST = '-T200s'
22 ZSTREAM_TESTTIME = '-T90s'
23 DECODECORPUS_TESTTIME = '-T30'
40 # needed due to use of private symbol + -fvisibility=hidden
51 c_args: [ '-DNDEBUG' ],
93 longmatch_sources = [join_paths(zstd_rootdir, 'tests/longmatch.c')]
[all …]
/external/zstd/tests/
DMakefile6 # This source code is licensed under both the BSD-style license (found in the
9 # You may select, at your option, one of the above-listed licenses.
13 # fullbench32: Same as fullbench, but forced to compile in 32-bits mode
14 # fuzzer : Test tool, to check zstd integrity on target platform
15 # fuzzer32: Same as fuzzer, but forced to compile in 32-bits mode
17 # test-zstd-speed.py : script for testing zstd speed difference between commits
18 # versionsTest : compatibility test between zstd versions stored on Github (v0.1+)
19 # zstreamtest : Fuzzer test tool for zstd streaming API
20 # zstreamtest32: Same as zstreamtest, but forced to compile in 32-bits mode
27 export DEBUGLEVEL # transmit value to sub-makefiles
[all …]
D.gitignore4 fullbench-lib
7 fuzzer-dll
10 zbufftest-dll
16 zstreamtest-dll
21 longmatch
33 # test artifacts
40 !gzip/hufts-segv.gz
47 # Tmp test directory
72 !golden-decompression/*.zst
/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
22 - `tests/playTests.sh --test-large-data`
23 - Fuzzer tests: `tests/fuzzer.c`, `tests/zstreamtest.c`, and `tests/decodecorpus.c`
24 - `tests/zstreamtest.c` under Tsan (streaming mode, including multithreaded mode)
[all …]
/external/zstd/.github/workflows/
Dcommit.yml5 - dev
6 permissions: read-all
8 short-tests-0:
9 runs-on: ubuntu-latest
12 image: fbopensource/zstd-circleci-primary:0.0.1
13 options: --entrypoint /bin/bash
15 - uses: actions/checkout@v4
16 - name: Install Dependencies
18 sudo apt-get update
19 sudo apt-get install libcurl4-gnutls-dev
[all …]
/external/zstd/.circleci/
Dconfig.yml4 # the first half of the jobs are in this test
5 short-tests-0:
9 - image: fbopensource/zstd-circleci-primary:0.0.1
11 - checkout
12 - run:
13 name: Test
15 ./tests/test-license.py
16 cc -v
17 CFLAGS="-O0 -Werror -pedantic" make allmost; make clean
20 make -j regressiontest; make clean
[all …]
/external/mtools/
Dvfat.c2 * Copyright 1996-2003,2005,2007-2009 Alain Knaff.
20 * Miscellaneous VFAT-related functions
50 tildapos = -1; in autorename()
66 seqnum = seqnum * 10 + (uint8_t)(name[dotpos] - '0'); in autorename()
69 tildapos = -1; /* sequence number interrupted */ in autorename()
71 if(tildapos == -1) { in autorename()
73 if(dotpos > limit - 2) { in autorename()
74 tildapos = limit - 2; in autorename()
86 tildapos = dotpos - 2; in autorename()
92 tildapos--; in autorename()
[all …]