Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | fixed lz4 compression starting at small address | test4973 | 2018-04-05 | 1 | -1/+1 |
| | | | | when using byU32 and byU16 modes | ||||
* | Merge branch 'dev' into lowAddr | test4973 | 2018-04-04 | 2 | -24/+32 |
|\ | |||||
| * | Add Dependency to Fix Parallel `make test` Runs | W. Felix Handte | 2018-03-21 | 1 | -1/+1 |
| | | | | | | | | | | | | When run with `-jN`, the `rm tmp*` can run in the middle of the `test-lz4-dict` job, which will then fail, finding its files to have been axed. This adds a dependency between the two. | ||||
| * | Remove Framebench Tool | W. Felix Handte | 2018-03-14 | 2 | -300/+1 |
| | | |||||
| * | Restore checkTag Cleaning | W. Felix Handte | 2018-03-13 | 1 | -1/+1 |
| | | |||||
| * | Renames and Comment Fixes | W. Felix Handte | 2018-03-12 | 1 | -1/+1 |
| | | |||||
| * | Make LZ4F_compressFrame_usingCDict Take a Compression Context | W. Felix Handte | 2018-03-12 | 2 | -8/+13 |
| | | |||||
| * | Avoid Resetting the Context When Possible | W. Felix Handte | 2018-03-12 | 1 | -1/+1 |
| | | |||||
| * | Add Bounds Check to locateBuffDiff | W. Felix Handte | 2018-03-12 | 1 | -3/+5 |
| | | |||||
| * | Add a Benchmarking Tool For Compression with Context Re-Use | W. Felix Handte | 2018-03-12 | 2 | -2/+299 |
| | | |||||
| * | added target make check | Yann Collet | 2018-02-26 | 1 | -13/+16 |
| | | | | | | | | | | | | | | | | | | | | according to GNU Makefile conventions, the Makefile should feature a make check target to self-test the generated program: https://www.gnu.org/prep/standards/html_node/Standard-Targets.html . this is much less thorough and less taxing than `make test`, and can be run on any target in a reasonable timeframe (several seconds). | ||||
* | | added low address fuzzer tests | test4973 | 2018-03-21 | 2 | -53/+63 |
| | | |||||
* | | fuzzer: added low address compression test | Yann Collet | 2018-02-05 | 1 | -1/+45 |
|/ | | | | is expected to work on linux+gcc only. | ||||
* | added checkTag | Yann Collet | 2018-01-15 | 3 | -1/+84 |
| | | | | | checkTag verifies that provided tag and library version match. It's started automatically in circleCI when a new tag is created. | ||||
* | object files in /tests | Yann Collet | 2017-12-27 | 1 | -5/+10 |
| | | | | | | object files created from /tests are compiled with specific flags (`-g -DLZ4_DEBUG=1`) which are not welcomed in release binary. `lib/*.o` files created from /tests are now stored in /tests, to avoid unintentional mix. | ||||
* | lz4opt supports _destSize | Yann Collet | 2017-12-22 | 1 | -7/+8 |
| | | | | no longer limited to level 9 | ||||
* | /tests programs compiled with LZ4_DEBUG=1 | Yann Collet | 2017-12-22 | 2 | -25/+24 |
| | | | | to enable assert() within /lib | ||||
* | unified HC levels | Yann Collet | 2017-11-03 | 1 | -6/+6 |
| | | | | | LZ4_setCompressionLevel() can be users accross the whole range of HC levels No more transition issue between Optimal and HC modes | ||||
* | Add some tests verifying command line dictionary functionality | W. Felix Handte | 2017-10-10 | 1 | -1/+28 |
| | |||||
* | removed test-fasttest | Yann Collet | 2017-08-25 | 1 | -1/+1 |
| | |||||
* | fixed make recurrence from /tests | Yann Collet | 2017-08-25 | 1 | -9/+3 |
| | |||||
* | removed fasttest | Yann Collet | 2017-08-25 | 2 | -163/+2 |
| | |||||
* | minor : added header license | Yann Collet | 2017-08-24 | 2 | -8/+31 |
| | |||||
* | make test is compatible with parallel execution (-j#) | Yann Collet | 2017-08-21 | 1 | -128/+125 |
| | | | | each test section runs with its own set of files | ||||
* | cli : restored command -BX to enable block checksum (#322) | Yann Collet | 2017-08-12 | 1 | -0/+1 |
| | |||||
* | restored block checksum capability at lz4frame API level | Yann Collet | 2017-08-12 | 1 | -2/+26 |
| | |||||
* | implemented lz4frame decompression API | Yann Collet | 2017-08-10 | 1 | -3/+64 |
| | |||||
* | support dictionary compression with independent blocks | Yann Collet | 2017-08-10 | 1 | -0/+30 |
| | |||||
* | dictionary compression correctly uses compression level | Yann Collet | 2017-08-10 | 1 | -0/+24 |
| | | | | Not obvious : copying the state was copying cdict's compression level | ||||
* | implemented dictionary compression in lz4frame | Yann Collet | 2017-08-09 | 1 | -1/+27 |
| | | | | | note : only compression API is implemented and tested still to do : decompression API | ||||
* | added dictID inside LZ4F_frameInfo_t | Yann Collet | 2017-08-09 | 1 | -85/+76 |
| | | | | | Compressor can set dictID on LZ4F_compressBegin() Decompressor can retrieve it using LZ4F_getFrameInfo() | ||||
* | tests/Makefile: don't use LIBDIR as variable | Jussi Kukkonen | 2017-06-26 | 1 | -13/+13 |
| | | | | | LIBDIR may be overriden with a environment variable: In this case make clean breaks in tests/. Use another variable name. | ||||
* | report where decompression ends (#313) | Yann Collet | 2017-06-12 | 1 | -0/+3 |
| | | | | | suggested by @ehem note : only works for files < 2 GB | ||||
* | fix (minor) g++ compatibility for frametest | Yann Collet | 2017-05-11 | 1 | -1/+1 |
| | |||||
* | added test for LZ4F_resetDecompressionContext() | Yann Collet | 2017-05-10 | 1 | -16/+29 |
| | |||||
* | fixed c_standards tests | Yann Collet | 2017-05-10 | 1 | -1/+2 |
| | | | | and added entry "make list" | ||||
* | lz4frame : Added negative compression levels | Yann Collet | 2017-04-09 | 1 | -1/+11 |
| | |||||
* | added LZ4F_resetDecompressionContext() | Yann Collet | 2017-03-29 | 1 | -22/+22 |
| | |||||
* | Safer LZ4_getFrameInfo() | Yann Collet | 2017-03-29 | 1 | -9/+17 |
| | | | | | LZ4_getFrameInfo() is now guaranteed to keep dctx state clean, even in case of failure. | ||||
* | cli: add GNU separator -- specifying that all following arguments are files | Dmitry V. Levin | 2017-03-23 | 1 | -0/+8 |
| | | | | | This option is supported by other compressors with compatible cli, so add it to lz4 as well for better compatibility. | ||||
* | added `extern C` for lz4.h static section | Yann Collet | 2017-03-17 | 1 | -1/+1 |
| | | | | should make the file more compatible with C++ compiler, such as Visual or g++ | ||||
* | LZ4_compress_HC_continue_destSize() works as intended up to level 10 | Yann Collet | 2017-03-16 | 1 | -1/+1 |
| | | | | | It's incompatible with btopt though, so cLevel >= 11 feature much reduced performance (degraded mode) | ||||
* | LZ4_compress_HC_destSize() uses LZ4HC_compress_generic() code path | Yann Collet | 2017-03-16 | 1 | -29/+55 |
| | | | | | Limits compression level to 10, to remain compatible with Hash Chain. | ||||
* | created LZ4_HC_STATIC_LINKING_ONLY section | Yann Collet | 2017-03-16 | 1 | -3/+4 |
| | | | | where are exposed new prototypes *_destSize() | ||||
* | tests: fuzzer: Add test for LZ4_compressHC_destSize | remittor | 2017-03-08 | 1 | -2/+38 |
| | |||||
* | Fix test-lz4-basic | Dmitry V. Levin | 2017-03-05 | 1 | -3/+3 |
| | | | | | | | | | When no output filename is specified and stdout is not a terminal, lz4 doesn't attempt to guess an output filename and uses stdout for output. This change fixes test-lz4-basic when run without a terminal by specifying output filenames. | ||||
* | remove MOREFLAGS from test-lz4c32 | Przemyslaw Skibinski | 2017-02-16 | 1 | -1/+0 |
| | |||||
* | circle.yml: fixed lz4c32 target (2) | Przemyslaw Skibinski | 2017-02-15 | 1 | -1/+1 |
| | |||||
* | circle.yml: fixed lz4c32 target | Przemyslaw Skibinski | 2017-02-15 | 1 | -1/+1 |
| | |||||
* | improved Circle CI tests | Przemyslaw Skibinski | 2017-02-15 | 1 | -0/+1 |
| |