1
0
mirror of https://github.com/facebook/zstd.git synced 2025-08-08 17:22:10 +03:00

[fuzz] Adding dictionary_stream_round_trip fuzzer (#2140)

* Adding dictionary_stream_round_trip

* fixing memory leak
This commit is contained in:
Bimba Shrestha
2020-05-15 15:33:31 -05:00
committed by GitHub
parent cb74ef3667
commit 255e5e3f56
3 changed files with 212 additions and 1 deletions

View File

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