File tree 5 files changed +16
-16
lines changed
5 files changed +16
-16
lines changed Original file line number Diff line number Diff line change @@ -144,11 +144,11 @@ jobs:
144
144
- name : install valgrind
145
145
run : |
146
146
sudo apt-get -qqq update
147
- make valgrindinstall
147
+ make valgrindinstall V=1
148
148
- name : zlib wrapper test
149
- run : make -C zlibWrapper test
149
+ run : make -C zlibWrapper test V=1
150
150
- name : zlib wrapper test under valgrind
151
- run : make -C zlibWrapper test-valgrind
151
+ run : make -C zlibWrapper test-valgrind V=1
152
152
153
153
lz4-threadpool-libs :
154
154
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:
60
60
* Note: run local tests to ensure that your changes didn't break existing functionality
61
61
* Quick check
62
62
```
63
- make shortest
63
+ make check
64
64
```
65
65
* Longer check
66
66
```
Original file line number Diff line number Diff line change @@ -85,14 +85,10 @@ test:
85
85
$(MAKE ) -C $(TESTDIR ) $@
86
86
ZSTD=../../programs/zstd $(MAKE ) -C doc/educational_decoder $@
87
87
88
- # # shortest: same as `make check`
89
- .PHONY : shortest
90
- shortest :
91
- $(Q )$(MAKE ) -C $(TESTDIR ) $@
92
-
93
88
# # check: run basic tests for `zstd` cli
94
89
.PHONY : check
95
- check : shortest
90
+ check :
91
+ $(Q )$(MAKE ) -C $(TESTDIR ) $@
96
92
97
93
.PHONY : automated_benchmarking
98
94
automated_benchmarking :
Original file line number Diff line number Diff line change @@ -312,12 +312,12 @@ endif
312
312
list :
313
313
@$(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
314
314
315
- .PHONY : shortest
316
- shortest : ZSTDRTTEST= # remove long tests
317
- shortest : test-zstd
318
-
319
315
.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 " ******************************"
321
321
322
322
.PHONY : fuzztest
323
323
fuzztest : test-fuzzer test-zstream test-decodecorpus
@@ -327,6 +327,9 @@ test: test-zstd test-cli-tests test-fullbench test-fuzzer test-zstream test-inva
327
327
ifeq ($(QEMU_SYS ) ,)
328
328
test : test-pool
329
329
endif
330
+ @echo "\n******************************"
331
+ @echo "All tests completed successfully"
332
+ @echo "******************************"
330
333
331
334
.PHONY : test32
332
335
test32 : test-zstd32 test-fullbench32 test-fuzzer32 test-zstream32
Original file line number Diff line number Diff line change @@ -1554,7 +1554,6 @@ then
1554
1554
roundTripTest -g4M " 1 -T0 --auto-threads=physical"
1555
1555
roundTripTest -g4M " 1 -T0 --auto-threads=logical"
1556
1556
roundTripTest -g8M " 3 -T2"
1557
- roundTripTest -g8M " 19 --long"
1558
1557
roundTripTest -g8000K " 2 --threads=2"
1559
1558
fileRoundTripTest -g4M " 19 -T2 -B1M"
1560
1559
@@ -1850,6 +1849,8 @@ roundTripTest -g18000017 -P88 17
1850
1849
roundTripTest -g18000018 -P94 18
1851
1850
roundTripTest -g18000019 -P96 19
1852
1851
1852
+ roundTripTest -g8M " 19 --long"
1853
+
1853
1854
roundTripTest -g5000000000 -P99 " 1 --zstd=wlog=25"
1854
1855
roundTripTest -g3700000000 -P0 " 1 --zstd=strategy=6,wlog=25" # ensure btlazy2 can survive an overflow rescale
1855
1856
You can’t perform that action at this time.
0 commit comments