[test] Test the bounds of ZSTD_c_srcSizeHint
This commit is contained in:
parent
5329de1f1e
commit
51990246c3
@ -1151,6 +1151,16 @@ static int basicUnitTests(U32 seed, double compressibility)
|
|||||||
}
|
}
|
||||||
DISPLAYLEVEL(3, "OK \n");
|
DISPLAYLEVEL(3, "OK \n");
|
||||||
|
|
||||||
|
DISPLAYLEVEL(3, "test%3i : ZSTD_c_srcSizeHint bounds : ", testNb++);
|
||||||
|
ZSTD_CCtx_reset(zc, ZSTD_reset_session_and_parameters);
|
||||||
|
CHECK_Z(ZSTD_CCtx_setParameter(zc, ZSTD_c_srcSizeHint, INT_MAX));
|
||||||
|
{ int srcSizeHint;
|
||||||
|
CHECK_Z(ZSTD_CCtx_getParameter(zc, ZSTD_c_srcSizeHint, &srcSizeHint));
|
||||||
|
CHECK(!(srcSizeHint == INT_MAX), "srcSizeHint doesn't match");
|
||||||
|
}
|
||||||
|
CHECK(!ZSTD_isError(ZSTD_CCtx_setParameter(zc, ZSTD_c_srcSizeHint, -1)), "Out of range doesn't error");
|
||||||
|
DISPLAYLEVEL(3, "OK \n");
|
||||||
|
|
||||||
/* Overlen overwriting window data bug */
|
/* Overlen overwriting window data bug */
|
||||||
DISPLAYLEVEL(3, "test%3i : wildcopy doesn't overwrite potential match data : ", testNb++);
|
DISPLAYLEVEL(3, "test%3i : wildcopy doesn't overwrite potential match data : ", testNb++);
|
||||||
{ /* This test has a window size of 1024 bytes and consists of 3 blocks:
|
{ /* This test has a window size of 1024 bytes and consists of 3 blocks:
|
||||||
|
Loading…
Reference in New Issue
Block a user