From: Lasse Collin Date: Sat, 27 Apr 2024 11:51:52 +0000 (+0300) Subject: Tests: test_index: Verify also iter.block.number_in_stream X-Git-Tag: v5.4.7~27 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=189251f5d2150b25b5d8d03f378ed5143c916c4b;p=thirdparty%2Fxz.git Tests: test_index: Verify also iter.block.number_in_stream (cherry picked from commit 12313a3b6596cdcf012e180597f84d231f8730d3) --- diff --git a/tests/test_index.c b/tests/test_index.c index 9ad7eab7..b7e91c26 100644 --- a/tests/test_index.c +++ b/tests/test_index.c @@ -703,6 +703,7 @@ test_lzma_index_iter_rewind(void) assert_false(lzma_index_iter_next(&iter, LZMA_INDEX_ITER_BLOCK)); assert_uint_eq(iter.block.number_in_file, i + 1); + assert_uint_eq(iter.block.number_in_stream, i + 1); } // Rewind back to the beginning and iterate over the Blocks again @@ -713,6 +714,7 @@ test_lzma_index_iter_rewind(void) assert_false(lzma_index_iter_next(&iter, LZMA_INDEX_ITER_BLOCK)); assert_uint_eq(iter.block.number_in_file, i + 1); + assert_uint_eq(iter.block.number_in_stream, i + 1); } // Next concatenate two more lzma_indexes, iterate over them,