Skip to content

Commit 7827514

Browse files
committed
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`
1 parent c8243b4 commit 7827514

File tree

5 files changed

+16
-16
lines changed

5 files changed

+16
-16
lines changed

.github/workflows/dev-short-tests.yml

+3-3
Original file line numberDiff line numberDiff 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

CONTRIBUTING.md

+1-1
Original file line numberDiff line numberDiff 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
```

Makefile

+2-6
Original file line numberDiff line numberDiff 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
9894
automated_benchmarking:

tests/Makefile

+8-5
Original file line numberDiff line numberDiff line change
@@ -312,12 +312,12 @@ endif
312312
list:
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
323323
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
327327
ifeq ($(QEMU_SYS),)
328328
test: test-pool
329329
endif
330+
@echo "\n******************************"
331+
@echo "All tests completed successfully"
332+
@echo "******************************"
330333

331334
.PHONY: test32
332335
test32: test-zstd32 test-fullbench32 test-fuzzer32 test-zstream32

tests/playTests.sh

+2-1
Original file line numberDiff line numberDiff 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
18501849
roundTripTest -g18000018 -P94 18
18511850
roundTripTest -g18000019 -P96 19
18521851

1852+
roundTripTest -g8M "19 --long"
1853+
18531854
roundTripTest -g5000000000 -P99 "1 --zstd=wlog=25"
18541855
roundTripTest -g3700000000 -P0 "1 --zstd=strategy=6,wlog=25" # ensure btlazy2 can survive an overflow rescale
18551856

0 commit comments

Comments
 (0)