]> git.ipfire.org Git - thirdparty/zstd.git/commitdiff
added tests presumed to break lz4 console detection
authorYann Collet <cyan@fb.com>
Mon, 30 Nov 2020 13:32:43 +0000 (05:32 -0800)
committerYann Collet <cyan@fb.com>
Mon, 30 Nov 2020 13:32:43 +0000 (05:32 -0800)
.github/workflows/generic-release.yml
.travis.yml

index d9e7109e21824dc1359518c5c01dc12c0ab79814..de4a1cb91454d1eb0726fb8763a0c0bd73475189 100644 (file)
@@ -3,17 +3,17 @@ name: generic-release
 on:
   pull_request:
     # This will eventually only be for pushes to master
-    # but for dogfooding purposes, I'm running it even 
+    # but for dogfooding purposes, I'm running it even
     # on dev pushes
     branches: [ dev, master, actionsTest ]
 
 jobs:
   # missing jobs
-  # 
+  #
   # ppc64le + fuzz test
   # Qemu PPC64 + Fuzz test
   # Qemu aarch64 + Fuzz Test (on Xenial)
-  # versions comp   
+  # versions comp
   # meson test
 
   osx:
@@ -24,7 +24,7 @@ jobs:
       run: |
         make test
         # make -c lib all (need to fix. not working right now)
-  
+
   zbuff:
     runs-on: ubuntu-16.04
     steps:
@@ -32,7 +32,7 @@ jobs:
     - name: zbuff test
       run: |
         make -C tests test-zbuff
-        
+
   tsan:
     runs-on: ubuntu-16.04
     steps:
@@ -53,7 +53,7 @@ jobs:
         make gpp6install valgrindinstall
         make -C zlibWrapper test
         make -C zlibWrapper valgrindTest
-  
+
   lz4-threadpool-partial-libs:
     runs-on: ubuntu-16.04
     steps:
@@ -62,6 +62,7 @@ jobs:
       run: |
         make lz4install
         make -C tests test-lz4
+        make check < /dev/null | tee   # mess with lz4 console detection
         make clean
         make -C tests test-pool
         make clean
index 8498e0efd838d9655ed3272f540855dc2be78832..226d4c0154ee5e9756936a0c57b9ef47e36d3119 100644 (file)
@@ -216,11 +216,12 @@ matrix:
         - make -C zlibWrapper test
         - make -C zlibWrapper valgrindTest
 
-    - name: LZ4, thread pool, and partial libs tests    # ~2mn
+    - name: LZ4, thread pool, and partial libs tests    # ~4mn
       if: branch = master
       script:
         - make lz4install
         - make -C tests test-lz4
+        - make check < /dev/null | tee    # mess with lz4 console detection
         - make clean
         - make -C tests test-pool
         - make clean