File tree Expand file tree Collapse file tree 5 files changed +16
-16
lines changed
Expand file tree Collapse file tree 5 files changed +16
-16
lines changed Original file line number Diff line number Diff line change @@ -144,11 +144,11 @@ jobs:
144144 - name : install valgrind
145145 run : |
146146 sudo apt-get -qqq update
147- make valgrindinstall
147+ make valgrindinstall V=1
148148 - name : zlib wrapper test
149- run : make -C zlibWrapper test
149+ run : make -C zlibWrapper test V=1
150150 - name : zlib wrapper test under valgrind
151- run : make -C zlibWrapper test-valgrind
151+ run : make -C zlibWrapper test-valgrind V=1
152152
153153 lz4-threadpool-libs :
154154 runs-on : ubuntu-latest
Original file line number Diff line number Diff line change @@ -60,7 +60,7 @@ Our contribution process works in three main stages:
6060 * Note: run local tests to ensure that your changes didn't break existing functionality
6161 * Quick check
6262 ```
63- make shortest
63+ make check
6464 ```
6565 * Longer check
6666 ```
Original file line number Diff line number Diff line change @@ -85,14 +85,10 @@ test:
8585 $(MAKE ) -C $(TESTDIR ) $@
8686 ZSTD=../../programs/zstd $(MAKE ) -C doc/educational_decoder $@
8787
88- # # shortest: same as `make check`
89- .PHONY : shortest
90- shortest :
91- $(Q )$(MAKE ) -C $(TESTDIR ) $@
92-
9388# # check: run basic tests for `zstd` cli
9489.PHONY : check
95- check : shortest
90+ check :
91+ $(Q )$(MAKE ) -C $(TESTDIR ) $@
9692
9793.PHONY : automated_benchmarking
9894automated_benchmarking :
Original file line number Diff line number Diff line change @@ -312,12 +312,12 @@ endif
312312list :
313313 @$(MAKE ) -pRrq -f $(lastword $(MAKEFILE_LIST ) ) : 2> /dev/null | awk -v RS= -F: ' /^# File/,/^# Finished Make data base/ {if ($$1 !~ "^[#.]") {print $$1}}' | sort | egrep -v -e ' ^[^[:alnum:]]' -e ' ^$@$$' | xargs
314314
315- .PHONY : shortest
316- shortest : ZSTDRTTEST= # remove long tests
317- shortest : test-zstd
318-
319315.PHONY : check
320- check : shortest
316+ check : ZSTDRTTEST= # remove long tests
317+ check : test-zstd
318+ @echo " \n******************************"
319+ @echo " All tests completed successfully"
320+ @echo " ******************************"
321321
322322.PHONY : fuzztest
323323fuzztest : test-fuzzer test-zstream test-decodecorpus
@@ -327,6 +327,9 @@ test: test-zstd test-cli-tests test-fullbench test-fuzzer test-zstream test-inva
327327ifeq ($(QEMU_SYS ) ,)
328328test : test-pool
329329endif
330+ @echo "\n******************************"
331+ @echo "All tests completed successfully"
332+ @echo "******************************"
330333
331334.PHONY : test32
332335test32 : test-zstd32 test-fullbench32 test-fuzzer32 test-zstream32
Original file line number Diff line number Diff line change @@ -1554,7 +1554,6 @@ then
15541554 roundTripTest -g4M " 1 -T0 --auto-threads=physical"
15551555 roundTripTest -g4M " 1 -T0 --auto-threads=logical"
15561556 roundTripTest -g8M " 3 -T2"
1557- roundTripTest -g8M " 19 --long"
15581557 roundTripTest -g8000K " 2 --threads=2"
15591558 fileRoundTripTest -g4M " 19 -T2 -B1M"
15601559
@@ -1850,6 +1849,8 @@ roundTripTest -g18000017 -P88 17
18501849roundTripTest -g18000018 -P94 18
18511850roundTripTest -g18000019 -P96 19
18521851
1852+ roundTripTest -g8M " 19 --long"
1853+
18531854roundTripTest -g5000000000 -P99 " 1 --zstd=wlog=25"
18541855roundTripTest -g3700000000 -P0 " 1 --zstd=strategy=6,wlog=25" # ensure btlazy2 can survive an overflow rescale
18551856
You can’t perform that action at this time.
0 commit comments