diff options
author | Yann Collet <cyan@fb.com> | 2017-05-10 21:51:09 (GMT) |
---|---|---|
committer | Yann Collet <cyan@fb.com> | 2017-05-10 21:51:09 (GMT) |
commit | 2012e4de9e2c33a5abb34d40082afc8918852c6e (patch) | |
tree | 0f36eb7c004111c903be43a8076cb500e17fd0e1 /tests | |
parent | a902127613921408bb02b1debe9371e9bcfaf9f2 (diff) | |
download | lz4-2012e4de9e2c33a5abb34d40082afc8918852c6e.zip lz4-2012e4de9e2c33a5abb34d40082afc8918852c6e.tar.gz lz4-2012e4de9e2c33a5abb34d40082afc8918852c6e.tar.bz2 |
fixed c_standards tests
and added entry "make list"
Diffstat (limited to 'tests')
-rw-r--r-- | tests/frametest.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/frametest.c b/tests/frametest.c index a4c548e..04597a4 100644 --- a/tests/frametest.c +++ b/tests/frametest.c @@ -290,7 +290,8 @@ int basicTests(U32 seed, double compressibility) { size_t nullSize = 0; size_t const fiError = LZ4F_getFrameInfo(dCtx, &fi, ip, &nullSize); if (LZ4F_getErrorCode(fiError) != LZ4F_ERROR_frameHeader_incomplete) { - DISPLAYLEVEL(3, "incorrect error : %s != ERROR_frameHeader_incomplete \n", LZ4F_getErrorName(fiError)); + DISPLAYLEVEL(3, "incorrect error : %s != ERROR_frameHeader_incomplete \n", + LZ4F_getErrorName(fiError)); goto _output_error; } DISPLAYLEVEL(3, " correctly failed : %s \n", LZ4F_getErrorName(fiError)); |