Tests
Suites
Latest Results
Search
Register
Login
Popular Tests
Flexible IO Tester
Timed Linux Kernel Compilation
Blender
7-Zip Compression
SVT-AV1
FFmpeg
Newest Tests
OpenVINO GenAI
Rustls
LiteRT
WarpX
Epoch
Valkey
Recently Updated Tests
srsRAN Project
VVenC
x265
RELION
Llamafile
Llama.cpp
New & Recently Updated Tests
Recently Updated Suites
Machine Learning
Server Motherboard
HPC - High Performance Computing
New & Recently Updated Suites
Component Benchmarks
CPUs / Processors
GPUs / Graphics
OpenGL
Disks / Storage
Motherboards
File-Systems
Operating Systems
OpenBenchmarking.org
Corporate / Organization Info
Bug Reports / Feature Requests
LZMA Compression 1.0.0
system/compress-lzma-1.0.0
- 08 December 2015 -
Initial commit of system LZMA.
install.sh
#!/bin/sh if which lzma >/dev/null 2>&1 ; then echo 0 > ~/install-exit-status else echo "ERROR: lzma is not found on the system!" echo 2 > ~/install-exit-status fi cat > compress-lzma <<EOT #!/bin/sh lzma --version | cut -d \" \" -f 5 > ~/pts-test-version 2>/dev/null lzma -q -c ./compressfile > /dev/null 2>&1 EOT chmod +x compress-lzma
test-definition.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v6.2.0m0--> <PhoronixTestSuite> <TestInformation> <Title>LZMA Compression</Title> </TestInformation> <TestProfile> <Version>1.0.0</Version> <Extends>pts/compress-lzma</Extends> <RequiresCoreVersionMin>6100</RequiresCoreVersionMin> <Maintainer>Michael Larabel</Maintainer> <SystemDependencies>lzma</SystemDependencies> </TestProfile> </PhoronixTestSuite>