8000 fixed zbuff test by Cyan4973 · Pull Request #2155 · facebook/zstd · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

fixed zbuff test #2155

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 21, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deleti 10000 on .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ matrix:
- name: zbuff test
if: branch = master
script:
- make test-zbuff
- make -C tests test-zbuff

- name: Versions Compatibility Test # 11.5mn
if: branch = master
Expand Down
15 changes: 0 additions & 15 deletions build/meson/tests/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -60,17 +60,6 @@ fuzzer = executable('fuzzer',
dependencies: libzstd_dep,
install: false)

zbufftest_sources = [join_paths(zstd_rootdir, 'programs/datagen.c'),
join_paths(zstd_rootdir, 'programs/util.c'),
join_paths(zstd_rootdir, 'programs/timefn.c'),
join_paths(zstd_rootdir, 'tests/zbufftest.c')]
zbufftest = executable('zbufftest',
zbufftest_sources,
c_args: ['-Wno-deprecated-declarations'],
include_directories: test_includes,
dependencies: libzstd_dep,
install: false)

zstreamtest_sources = [join_paths(zstd_rootdir, 'programs/datagen.c'),
join_paths(zstd_rootdir, 'programs/util.c'),
join_paths(zstd_rootdir, 'programs/timefn.c'),
Expand Down Expand Up @@ -193,10 +182,6 @@ if use_zlib
timeout: 480)
endif

test('test-zbuff',
zbufftest,
args: [ZSTREAM_TESTTIME],
timeout: 120)
test('test-zstream-1',
zstreamtest,
args: ['-v', ZSTREAM_TESTTIME] + FUZZER_FLAGS,
Expand Down
0