File tree Expand file tree Collapse file tree 4 files changed +16
-16
lines changed Expand file tree Collapse file tree 4 files changed +16
-16
lines changed Original file line number Diff line number Diff line change 41
41
run : |
42
42
ulimit -c unlimited -S
43
43
cd build
44
- make test && QUICRESULT=$?
45
- if [[ ${QUICRESULT} == 0 ]]; then exit 0; fi;
44
+ ./picoquic_ct -S .. -n -r && QUICRESULT=$?
45
+ ./picohttp_ct -S .. -n -r -x http_corrupt && HTTPRESULT=$?
46
+ if [[ ${QUICRESULT} == 0 ]] && [[ ${HTTPRESULT} == 0 ]]; then exit 0; fi;
46
47
exit 1
Original file line number Diff line number Diff line change 37
37
run : |
38
38
ulimit -c unlimited -S
39
39
cd build
40
- make test && QUICRESULT=$?
41
- if [[ ${QUICRESULT} == 0 ]]; then exit 0; fi;
40
+ ./picoquic_ct -S .. -n -r && QUICRESULT=$?
41
+ ./picohttp_ct -S .. -n -r -x http_corrupt && HTTPRESULT=$?
42
+ if [[ ${QUICRESULT} == 0 ]] && [[ ${HTTPRESULT} == 0 ]]; then exit 0; fi;
42
43
exit 1
Original file line number Diff line number Diff line change 36
36
run : |
37
37
ulimit -c unlimited -S
38
38
cd build
39
- make test && QUICRESULT=$?
40
- cd ..
41
- if [[ ${QUICRESULT} == 0 ]]; then exit 0; fi;
42
- cat /home/runner/work/picoquic/picoquic/build/Testing/Temporary/LastTest.log
39
+ ./picoquic_ct -S .. -n -r && QUICRESULT=$?
40
+ ./picohttp_ct -S .. -n -r -x http_corrupt && HTTPRESULT=$?
41
+ if [[ ${QUICRESULT} == 0 ]] && [[ ${HTTPRESULT} == 0 ]]; then exit 0; fi;
43
42
exit 1
44
43
45
44
# TODO: reset the test once openssl issue is understood.
Original file line number Diff line number Diff line change @@ -36,12 +36,11 @@ jobs:
36
36
./picoquic_ct -S .. -n -r && QUICRESULT=$?
37
37
./picohttp_ct -S .. -n -r -x http_corrupt && HTTPRESULT=$?
38
38
if [[ ${QUICRESULT} == 0 ]] && [[ ${HTTPRESULT} == 0 ]]; then exit 0; fi;
39
- cat /home/runner/work/picoquic/picoquic/build/Testing/Temporary/LastTest.log
40
39
exit 1
41
-
42
- - name : Run Valgrind
43
- run : |
44
- sudo apt-get update
45
- sudo apt-get install -y valgrind
46
- # Remove, until the picotls/openssl issue is resolved.
47
- # valgrind -v --error-exitcode=1 --track-origins=yes build/picoquic_ct zero_rtt_many_losses
40
+
41
+ # Remove, until the picotls/openssl issue is resolved. TODO: restore when understood.
42
+ # - name: Run Valgrind
43
+ # run: |
44
+ # sudo apt-get update
45
+ # sudo apt-get install -y valgrind
46
+ # valgrind -v --error-exitcode=1 --track-origins=yes build/picoquic_ct zero_rtt_many_losses
You can’t perform that action at this time.
0 commit comments