summaryrefslogtreecommitdiffstats
path: root/programs/frametest.c
diff options
context:
space:
mode:
authorYann Collet <yann.collet.73@gmail.com>2015-03-29 21:51:43 (GMT)
committerYann Collet <yann.collet.73@gmail.com>2015-03-29 21:51:43 (GMT)
commit987e78c291063c2ed79fbbe71237576c3e5be0f5 (patch)
tree90ce83e8949d054b336aaffc72f7463b2dfab3f8 /programs/frametest.c
parent2d4fed5ed2a8e0231f98d79699d28af0142d0099 (diff)
parent8cb06d5b9922b16854b05081ce829c223a8129fd (diff)
downloadlz4-987e78c291063c2ed79fbbe71237576c3e5be0f5.zip
lz4-987e78c291063c2ed79fbbe71237576c3e5be0f5.tar.gz
lz4-987e78c291063c2ed79fbbe71237576c3e5be0f5.tar.bz2
Merge pull request #66 from Cyan4973/dev
Dev
Diffstat (limited to 'programs/frametest.c')
-rw-r--r--programs/frametest.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/programs/frametest.c b/programs/frametest.c
index 2a087ec..96d5acb 100644
--- a/programs/frametest.c
+++ b/programs/frametest.c
@@ -402,7 +402,7 @@ int basicTests(U32 seed, double compressibility)
DISPLAYLEVEL(3, "Compressed %i bytes into a %i bytes frame \n", (int)testSize, (int)(op-ostart));
DISPLAYLEVEL(3, "compress with frameSize : \n");
- prefs.frameInfo.frameOSize = testSize;
+ prefs.frameInfo.contentSize = testSize;
op = ostart;
errorCode = LZ4F_compressBegin(cctx, compressedBuffer, testSize, &prefs);
if (LZ4F_isError(errorCode)) goto _output_error;
@@ -415,7 +415,7 @@ int basicTests(U32 seed, double compressibility)
DISPLAYLEVEL(3, "Compressed %i bytes into a %i bytes frame \n", (int)testSize, (int)(op-ostart));
DISPLAYLEVEL(3, "compress with wrong frameSize : \n");
- prefs.frameInfo.frameOSize = testSize+1;
+ prefs.frameInfo.contentSize = testSize+1;
op = ostart;
errorCode = LZ4F_compressBegin(cctx, compressedBuffer, testSize, &prefs);
if (LZ4F_isError(errorCode)) goto _output_error;
@@ -594,7 +594,7 @@ int fuzzerTests(U32 seed, unsigned nbTests, unsigned startTest, double compressi
prefs.frameInfo.blockMode = (blockMode_t)BMId;
prefs.frameInfo.blockSizeID = (blockSizeID_t)BSId;
prefs.frameInfo.contentChecksumFlag = (contentChecksum_t)CCflag;
- prefs.frameInfo.frameOSize = frameContentSize;
+ prefs.frameInfo.contentSize = frameContentSize;
prefs.autoFlush = autoflush;
prefs.compressionLevel = FUZ_rand(&randState) % 5;
if ((FUZ_rand(&randState) & 0xF) == 1) prefsPtr = NULL;
@@ -740,7 +740,7 @@ int main(int argc, char** argv)
int proba = FUZ_COMPRESSIBILITY_DEFAULT;
int result=0;
- // Check command line
+ /* Check command line */
programName = argv[0];
for(argNb=1; argNb<argc; argNb++)
{
@@ -830,7 +830,7 @@ int main(int argc, char** argv)
}
}
- // Get Seed
+ /* Get Seed */
printf("Starting lz4frame tester (%i-bits, %s)\n", (int)(sizeof(size_t)*8), LZ4_VERSION);
if (!seedset) seed = FUZ_GetMilliStart() % 10000;