aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYann Collet <cyan@fb.com>2022-07-15 12:13:45 +0200
committerYann Collet <cyan@fb.com>2022-07-15 12:13:45 +0200
commit0e9ab694f22fa3c1ec316f997a4277e30b70ee25 (patch)
tree66bce6319693ed03d3ac24e1b6f07b47811dab1e
parent1d17532d70d0b93032de4ada17c1787ee8939f15 (diff)
downloadlz4-0e9ab694f22fa3c1ec316f997a4277e30b70ee25.tar.gz
refactor test ensuring that make test does not depend on console status
Fix #990
-rw-r--r--.github/workflows/ci.yml7
1 files changed, 3 insertions, 4 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 0b1650ca..616926eb 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -581,10 +581,9 @@ jobs:
- name: make test
run: make V=1 clean test MOREFLAGS='-Werror -Wconversion -Wno-sign-conversion'
- - name: make test | tee
- # test scenario where `stdout` is not the console
- run: make V=1 clean test MOREFLAGS='-Werror -Wconversion -Wno-sign-conversion' | tee
-
+ - name: Ensure `make test` doesn't depend on the status of the console
+ # see issue #990 for detailed explanations
+ run: make test > /dev/null
###############################################################