mirror of https://git.tukaani.org/xz.git
Tests: test_index: Test lzma_index_buffer_encode() with empty output buf
This commit is contained in:
parent
cd88423e76
commit
2c970debdb
|
@ -1628,6 +1628,9 @@ test_lzma_index_buffer_encode(void)
|
|||
assert_lzma_ret(lzma_index_buffer_encode(idx, buffer, &out_pos,
|
||||
0), LZMA_PROG_ERROR);
|
||||
out_pos = 0;
|
||||
assert_lzma_ret(lzma_index_buffer_encode(idx, buffer, &out_pos,
|
||||
0), LZMA_BUF_ERROR);
|
||||
assert_uint_eq(out_pos, 0);
|
||||
assert_lzma_ret(lzma_index_buffer_encode(idx, buffer, &out_pos,
|
||||
1), LZMA_BUF_ERROR);
|
||||
|
||||
|
|
Loading…
Reference in New Issue