lz4/tests
Yann Collet 452f35c3c0 minor: fix test name
obvious insertion mishap
2024-09-07 15:50:10 -07:00
..
cmake Add an lz4::lz4 target to the exported package 2024-07-23 20:32:43 +02:00
goldenSamples support skippable frames within pipe 2022-07-15 19:30:53 +02:00
.gitignore very minor conversion warning fix 2023-12-21 14:01:39 -08:00
abiTest.c minor : specify min versions for library version identifiers 2022-07-12 22:33:08 +02:00
check_liblz4_version.sh write liblz4 dynamic library version 2022-07-12 09:40:45 -07:00
checkFrame.c Enclose by a do-while loop to avoid possible if/else logic defects 2023-06-25 17:43:51 +02:00
checkTag.c updated license & header dates 2020-11-25 14:45:14 -08:00
COPYING update gpl license to 2.0-or-later 2024-07-10 07:26:20 +02:00
datagen.c bench.c does not longer need datagen 2024-01-28 00:56:56 -08:00
datagen.h bench.c does not longer need datagen 2024-01-28 00:56:56 -08:00
datagencli.c removed COMPRESSIBILITY_DEFAULT 2024-01-28 15:08:42 -08:00
decompress-partial-usingDict.c fix decompress-partial-usingDict.c 2022-07-15 13:05:43 +02:00
decompress-partial.c Discard trailing spaces 2023-06-25 17:43:56 +02:00
frametest.c minor: lower literal range 2024-01-29 12:55:44 -08:00
freestanding.c Fix stack alignment of _start() in freestanding test 2024-07-22 22:16:16 +02:00
fullbench.c minor: fix test name 2024-09-07 15:50:10 -07:00
fuzzer.c LZ4_loadDictHC is compatible with LZ4MID level 2 2024-07-17 23:01:08 -07:00
loremOut.c improved lorem ipsum generator speed by a factor > x8 2024-07-20 14:29:58 -07:00
loremOut.h datagen uses lorem ipsum generator by default 2024-01-28 14:05:21 -08:00
Makefile improved speed of lorem ipsum generator 2024-07-20 12:35:41 -07:00
README.md fix: various typos 2022-07-31 17:47:00 +02:00
roundTripTest.c clarify yet another time what dual-license means 2022-07-04 16:36:19 -07:00
test_custom_block_sizes.sh fix warnings reported by shellcheck in shell scripts 2021-08-21 20:46:23 +00:00
test_install.sh fix warnings reported by shellcheck in shell scripts 2021-08-21 20:46:23 +00:00
test-lz4-abi.py minor CI adjustments 2023-12-22 20:32:30 -08:00
test-lz4-basic.sh removed implicit stdout 2024-07-12 22:24:42 -07:00
test-lz4-contentSize.sh Update Meson build to 1.9.4 2022-10-19 23:27:05 -05:00
test-lz4-dict.sh fix potential leak after failure in legacy format 2023-12-29 18:07:57 -08:00
test-lz4-fast-hugefile.sh fixed meson build 2023-12-28 20:22:23 -08:00
test-lz4-frame-concatenation.sh Update Meson build to 1.9.4 2022-10-19 23:27:05 -05:00
test-lz4-list.py removed failing tests 2024-07-15 12:01:01 -07:00
test-lz4-multiple-legacy.sh make file open errors recoverable in legacy mode 2023-12-29 16:53:58 -08:00
test-lz4-multiple.sh Update Meson build to 1.9.4 2022-10-19 23:27:05 -05:00
test-lz4-opt-parser.sh Update Meson build to 1.9.4 2022-10-19 23:27:05 -05:00
test-lz4-skippable.sh Update Meson build to 1.9.4 2022-10-19 23:27:05 -05:00
test-lz4-sparse.sh Update Meson build to 1.9.4 2022-10-19 23:27:05 -05:00
test-lz4-speed.py minor CI adjustments 2023-12-22 20:32:30 -08:00
test-lz4-testmode.sh Update Meson build to 1.9.4 2022-10-19 23:27:05 -05:00
test-lz4-versions.py fixed -j for versionsTest 2023-12-24 21:09:03 -08:00
test-lz4hc-hugefile.sh fixed meson build 2023-12-28 20:22:23 -08:00
unicode_lint.sh minor documentation for unicode_lint 2021-08-09 05:33:20 -07:00

Programs and scripts for automated testing of LZ4

This directory contains the following programs and scripts:

  • datagen : Synthetic and parametrable data generator, for tests
  • frametest : Test tool that checks lz4frame integrity on target platform
  • fullbench : Precisely measure speed for each lz4 inner functions
  • fuzzer : Test tool, to check lz4 integrity on target platform
  • test-lz4-speed.py : script for testing lz4 speed difference between commits
  • test-lz4-versions.py : compatibility test between lz4 versions stored on Github

test-lz4-versions.py - script for testing lz4 interoperability between versions

This script creates versionsTest directory to which lz4 repository is cloned. Then all tagged (released) versions of lz4 are compiled. In the following step interoperability between lz4 versions is checked.

test-lz4-speed.py - script for testing lz4 speed difference between commits

This script creates speedTest directory to which lz4 repository is cloned. Then it compiles all branches of lz4 and performs a speed benchmark for a given list of files (the testFileNames parameter). After sleepTime (an optional parameter, default 300 seconds) seconds the script checks repository for new commits. If a new commit is found it is compiled and a speed benchmark for this commit is performed. The results of the speed benchmark are compared to the previous results. If compression or decompression speed for one of lz4 levels is lower than lowerLimit (an optional parameter, default 0.98) the speed benchmark is restarted. If second results are also lower than lowerLimit the warning e-mail is sent to recipients from the list (the emails parameter).

Additional remarks:

  • To be sure that speed results are accurate the script should be run on a "stable" target system with no other jobs running in parallel
  • Using the script with virtual machines can lead to large variations of speed results
  • The speed benchmark is not performed until computers' load average is lower than maxLoadAvg (an optional parameter, default 0.75)
  • The script sends e-mails using mutt; if mutt is not available it sends e-mails without attachments using mail; if both are not available it only prints a warning

The example usage with two test files, one e-mail address, and with an additional message:

./test-lz4-speed.py "silesia.tar calgary.tar" "email@gmail.com" --message "tested on my laptop" --sleepTime 60

To run the script in background please use:

nohup ./test-lz4-speed.py testFileNames emails &

The full list of parameters:

positional arguments:
  testFileNames         file names list for speed benchmark
  emails                list of e-mail addresses to send warnings

optional arguments:
  -h, --help            show this help message and exit
  --message MESSAGE     attach an additional message to e-mail
  --lowerLimit LOWERLIMIT
                        send email if speed is lower than given limit
  --maxLoadAvg MAXLOADAVG
                        maximum load average to start testing
  --lastCLevel LASTCLEVEL
                        last compression level for testing
  --sleepTime SLEEPTIME
                        frequency of repository checking in seconds

License

All files in this directory are licensed under GPL-v2. See COPYING for details. The text of the license is also included at the top of each source file.