Skip to content

Commit 0931acf

Browse files
committed
Display outcomes of tests
1 parent 1e45db3 commit 0931acf

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/ci-tests.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,9 @@ jobs:
3333
run: |
3434
ulimit -c unlimited -S
3535
cd build
36-
make test && QUICRESULT=$?
37-
if [[ ${QUICRESULT} == 0 ]]; then exit 0; fi;
36+
./picoquic_ct -S .. -n -r && QUICRESULT=$?
37+
./picohttp_ct -S .. -n -r -x http_corrupt && HTTPRESULT=$?
38+
if [[ ${QUICRESULT} == 0 ]] && [[ ${HTTPRESULT} == 0 ]]; then exit 0; fi;
3839
cat /home/runner/work/picoquic/picoquic/build/Testing/Temporary/LastTest.log
3940
exit 1
4041

0 commit comments

Comments
 (0)