intermediate bump for easier review full diff: https://github.com/klauspost/compress/compare/v1.14.3...v1.15.0 Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
12 lines
310 B
Go
12 lines
310 B
Go
//go:build gofuzz
|
|
// +build gofuzz
|
|
|
|
// Copyright 2019+ Klaus Post. All rights reserved.
|
|
// License information can be found in the LICENSE file.
|
|
// Based on work by Yann Collet, released under BSD License.
|
|
|
|
package zstd
|
|
|
|
// ignoreCRC can be used for fuzz testing to ignore CRC values...
|
|
const ignoreCRC = true
|