]> git.ipfire.org Git - thirdparty/zstd.git/commitdiff
fixed zbuff test 2155/head
authorYann Collet <cyan@fb.com>
Thu, 21 May 2020 07:22:52 +0000 (00:22 -0700)
committerYann Collet <cyan@fb.com>
Thu, 21 May 2020 07:22:52 +0000 (00:22 -0700)
error introduced in https://github.com/facebook/zstd/blame/3b39ce6b527c5cfe395a187c75b77baf5cc7de02/.travis.yml#L192

.travis.yml
build/meson/tests/meson.build

index 01baee399cb9e50c1fde3dd86b7951fe5e4824f3..ce69723d3187449a00cdcd0a703955dad3bbe757 100644 (file)
@@ -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
index 6b1282def5f35a844c69047494dbbd85f7306f3a..728dba02d5aaacd6fbf6972c340c1a55e1e45cd8 100644 (file)
@@ -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'),
@@ -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,