1
0
mirror of https://github.com/facebook/zstd.git synced 2025-07-29 11:21:22 +03:00

[fix] Always return dstSize_tooSmall when it is the case

This commit is contained in:
Nick Terrell
2020-08-15 12:32:57 -07:00
parent e33e5eece3
commit 1302f8d676
7 changed files with 91 additions and 12 deletions

View File

@ -59,6 +59,7 @@ TARGET_INFO = {
'dictionary_loader': TargetInfo(InputType.DICTIONARY_DATA),
'raw_dictionary_round_trip': TargetInfo(InputType.RAW_DATA),
'dictionary_stream_round_trip': TargetInfo(InputType.RAW_DATA),
'decompress_dstSize_tooSmall': TargetInfo(InputType.RAW_DATA),
}
TARGETS = list(TARGET_INFO.keys())
ALL_TARGETS = TARGETS + ['all']