mirror of
https://git.tukaani.org/xz.git
synced 2024-04-04 12:36:23 +02:00
Tests: test_index_hash: Don't treat pointers as booleans.
This commit is contained in:
parent
056766c860
commit
02608f74ea
1 changed files with 3 additions and 3 deletions
|
@ -60,7 +60,7 @@ test_lzma_index_hash_append(void)
|
||||||
|
|
||||||
// Test with invalid Unpadded Size
|
// Test with invalid Unpadded Size
|
||||||
lzma_index_hash *index_hash = lzma_index_hash_init(NULL, NULL);
|
lzma_index_hash *index_hash = lzma_index_hash_init(NULL, NULL);
|
||||||
assert_true(index_hash);
|
assert_true(index_hash != NULL);
|
||||||
assert_lzma_ret(lzma_index_hash_append(index_hash,
|
assert_lzma_ret(lzma_index_hash_append(index_hash,
|
||||||
UNPADDED_SIZE_MIN - 1, LZMA_VLI_MAX),
|
UNPADDED_SIZE_MIN - 1, LZMA_VLI_MAX),
|
||||||
LZMA_PROG_ERROR);
|
LZMA_PROG_ERROR);
|
||||||
|
@ -152,7 +152,7 @@ test_lzma_index_hash_decode(void)
|
||||||
assert_skip("Encoder or decoder support disabled");
|
assert_skip("Encoder or decoder support disabled");
|
||||||
#else
|
#else
|
||||||
lzma_index_hash *index_hash = lzma_index_hash_init(NULL, NULL);
|
lzma_index_hash *index_hash = lzma_index_hash_init(NULL, NULL);
|
||||||
assert_true(index_hash);
|
assert_true(index_hash != NULL);
|
||||||
|
|
||||||
size_t in_pos = 0;
|
size_t in_pos = 0;
|
||||||
|
|
||||||
|
@ -313,7 +313,7 @@ test_lzma_index_hash_size(void)
|
||||||
assert_skip("Decoder support disabled");
|
assert_skip("Decoder support disabled");
|
||||||
#else
|
#else
|
||||||
lzma_index_hash *index_hash = lzma_index_hash_init(NULL, NULL);
|
lzma_index_hash *index_hash = lzma_index_hash_init(NULL, NULL);
|
||||||
assert_true(index_hash);
|
assert_true(index_hash != NULL);
|
||||||
|
|
||||||
// First test empty index_hash
|
// First test empty index_hash
|
||||||
// Expected size should be:
|
// Expected size should be:
|
||||||
|
|
Loading…
Reference in a new issue