diff options
| author | Mark Wielaard <[email protected]> | 2015-12-19 01:29:54 +0100 |
|---|---|---|
| committer | Mark Wielaard <[email protected]> | 2016-01-06 14:27:10 +0100 |
| commit | 272018bba1f253bae00b5ba280ad0e0f18c04006 (patch) | |
| tree | f0b20b43f9caf6d193ae9c05f5583699f34bc59d /tests/msg_tst.c | |
| parent | b7105b40ccd73a8e6b7fce6c11d2088eb1298b33 (diff) | |
libelf: Add elf_compress and elf_compress_gnu.
Signed-off-by: Mark Wielaard <[email protected]>
Diffstat (limited to 'tests/msg_tst.c')
| -rw-r--r-- | tests/msg_tst.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/tests/msg_tst.c b/tests/msg_tst.c index 539c5ddb..7baea0a2 100644 --- a/tests/msg_tst.c +++ b/tests/msg_tst.c @@ -77,7 +77,11 @@ and core files" }, { ELF_E_INVALID_OFFSET, "invalid offset" }, { ELF_E_INVALID_SECTION_TYPE , "invalid section type" }, { ELF_E_INVALID_SECTION_FLAGS , "invalid section flags" }, - { ELF_E_NOT_COMPRESSED, "section does not contain compressed data" } + { ELF_E_NOT_COMPRESSED, "section does not contain compressed data" }, + { ELF_E_ALREADY_COMPRESSED, "section contains compressed data" }, + { ELF_E_UNKNOWN_COMPRESSION_TYPE, "unknown compression type" }, + { ELF_E_COMPRESS_ERROR, "cannot compress data" }, + { ELF_E_DECOMPRESS_ERROR, "cannot decompress data" } }; |
