.autotest

git-svn-id: svn://ultimatepp.org/upp/trunk@7802 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
cxl 2014-10-20 18:17:39 +00:00
parent 4a35689216
commit 00835b92be

View file

@ -170,11 +170,13 @@ CONSOLE_APP_MAIN
fclose(outFp);
fclose(inpFp);
RDUMP(GetFileLength(file));
RDUMP(GetFileLength(lz4));
}
// decompress
{
RTIMESTOP("Decompress");
{ RTIMESTOP("Decompress");
FILE* inpFp = fopen(lz4, "rb");
FILE* outFp = fopen(dec, "wb");
@ -183,7 +185,7 @@ CONSOLE_APP_MAIN
fclose(outFp);
fclose(inpFp);
}
ASSERT(FilesEqual(file, dec));
}