Added a final success message at end of tests

so that a human reading the test log can determine everything was fine without consulting the shell error code.

Also: made `make check` slightly shorter by moving one longer test to `make test`
This commit is contained in:
Yann Collet
2025-01-17 19:30:55 -08:00
parent c8243b4724
commit 78275149ea
5 changed files with 16 additions and 16 deletions
+3 -3
View File
@@ -144,11 +144,11 @@ jobs:
- name: install valgrind
run: |
sudo apt-get -qqq update
make valgrindinstall
make valgrindinstall V=1
- name: zlib wrapper test
run: make -C zlibWrapper test
run: make -C zlibWrapper test V=1
- name: zlib wrapper test under valgrind
run: make -C zlibWrapper test-valgrind
run: make -C zlibWrapper test-valgrind V=1
lz4-threadpool-libs:
runs-on: ubuntu-latest