Skip to content

Commit

Permalink
drop! debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
t8m committed Jun 13, 2023
1 parent eadb5f2 commit d25ad46
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
run: nmake /S
- name: test
working-directory: _build
run: nmake test VERBOSE_FAILURE=yes TESTS=-test_fuzz* HARNESS_JOBS=4
run: nmake test HARNESS_VERBOSE=yes TESTS=test_quic_stream HARNESS_JOBS=4
- name: install
# Run on 64 bit only as 32 bit is slow enough already
if: $${{ matrix.platform.arch == 'win64' }}
Expand Down
2 changes: 2 additions & 0 deletions test/quic_stream_test.c
Original file line number Diff line number Diff line change
Expand Up @@ -531,11 +531,13 @@ static int test_rstream_random(int idx)
goto err;
read_off += readbytes;
queued_min = read_off;
#if 0
if (test_random() % 50 == 0)
if (!TEST_true(ossl_quic_rstream_resize_rbuf(rstream,
queued_max - read_off + 1))
|| !TEST_true(ossl_quic_rstream_move_to_rbuf(rstream)))
goto err;
#endif
if (!fin_set && queued_max >= data_size - test_random() % 200) {
fin_set = 1;
/* Queue empty fin frame */
Expand Down

0 comments on commit d25ad46

Please sign in to comment.