summaryrefslogtreecommitdiffstats
path: root/test/test-lz4-versions.py
Commit message (Collapse)AuthorAgeFilesLines
* renamed directory to versionsTestYann Collet2015-06-281-147/+0
|
* Combine unique .lz4 file infoTakayuki MATSUOKA2015-05-201-7/+1
|
* Support iterative edit and testingTakayuki MATSUOKA2015-05-201-2/+5
| | | | | | | | | | | | | | This commit will allows iterative edit and testing to local working copy. You could iterate edit and testing by the following commands: cd /path/to/lz4 cd test make versionstest my-favorite-text-editor ../lib/lz4.c make versionstest my-favorite-text-editor ./test-lz4-versions.py make versionstest ...
* Add log output of succeeded decompression to test scriptTakayuki MATSUOKA2015-05-201-0/+5
|
* Add log of same files and sha1 hash of unique files to versionstestTakayuki MATSUOKA2015-05-201-0/+11
|
* removed "flush" argument to please Travis's python versionYann Collet2015-05-171-3/+3
|
* cosmetic changes, 2nd tryYann Collet2015-05-151-4/+17
|
* Issue #103 : Add compatibility test between releasesTakayuki MATSUOKA2015-05-151-0/+121
Add forward/backward compatibility test between all versions - Add new Makefile target "versionstest". - Standard test procedure like "make versionstest && make clean" works properly. test/test-lz4-versions.py - This script creates test/lz4test and checkout all Release tagged versions. After that, compile all versions of lz4c and lz4c32 and compress/decompress between all versions. - This test clones entire git repository to checkout all tags. - Since Travis's default command does not clone entire repository, we could not checkout all tags from Travis' default clone. - After that, test script shows all unique .lz4 files. In this list, 'r999' means 'head' of current working copy.