aboutsummaryrefslogtreecommitdiff
path: root/tests/test_stream_flags.c
diff options
context:
space:
mode:
authorLasse Collin <lasse.collin@tukaani.org>2019-12-31 22:41:45 +0200
committerLasse Collin <lasse.collin@tukaani.org>2019-12-31 22:41:45 +0200
commit00517d125cc26ecece0eebb84c1c3975cd19bee0 (patch)
tree7594f2692ad92e8115ce91e6030032171161368c /tests/test_stream_flags.c
parentRename read32ne to aligned_read32ne, and similarly for the others. (diff)
downloadxz-00517d125cc26ecece0eebb84c1c3975cd19bee0.tar.xz
Rename unaligned_read32ne to read32ne, and similarly for the others.
Diffstat (limited to 'tests/test_stream_flags.c')
-rw-r--r--tests/test_stream_flags.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/test_stream_flags.c b/tests/test_stream_flags.c
index b40d035b..39304cd4 100644
--- a/tests/test_stream_flags.c
+++ b/tests/test_stream_flags.c
@@ -133,13 +133,13 @@ test_decode_invalid(void)
// Test 2a (valid CRC32)
uint32_t crc = lzma_crc32(buffer + 6, 2, 0);
- unaligned_write32le(buffer + 8, crc);
+ write32le(buffer + 8, crc);
succeed(test_header_decoder(LZMA_OK));
// Test 2b (invalid Stream Flags with valid CRC32)
buffer[6] ^= 0x20;
crc = lzma_crc32(buffer + 6, 2, 0);
- unaligned_write32le(buffer + 8, crc);
+ write32le(buffer + 8, crc);
succeed(test_header_decoder(LZMA_OPTIONS_ERROR));
// Test 3 (invalid CRC32)
@@ -151,7 +151,7 @@ test_decode_invalid(void)
expect(lzma_stream_footer_encode(&known_flags, buffer) == LZMA_OK);
buffer[9] ^= 0x40;
crc = lzma_crc32(buffer + 4, 6, 0);
- unaligned_write32le(buffer, crc);
+ write32le(buffer, crc);
succeed(test_footer_decoder(LZMA_OPTIONS_ERROR));
// Test 5 (invalid Magic Bytes)