We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0931acf commit 49ae956Copy full SHA for 49ae956
.github/workflows/ci-tests-clang.yml
@@ -41,6 +41,7 @@ jobs:
41
run: |
42
ulimit -c unlimited -S
43
cd build
44
- make test && QUICRESULT=$?
45
- if [[ ${QUICRESULT} == 0 ]]; then exit 0; fi;
+ ./picoquic_ct -S .. -n -r && QUICRESULT=$?
+ ./picohttp_ct -S .. -n -r -x http_corrupt && HTTPRESULT=$?
46
+ if [[ ${QUICRESULT} == 0 ]] && [[ ${HTTPRESULT} == 0 ]]; then exit 0; fi;
47
exit 1
0 commit comments