Tests
Suites
Latest Results
Search
Register
Login
Popular Tests
Timed Linux Kernel Compilation
SVT-AV1
7-Zip Compression
Stockfish
FFmpeg
x265
Newest Tests
LiteRT
WarpX
Epoch
Valkey
Whisperfile
XNNPACK
Recently Updated Tests
SuperTuxKart
ASTC Encoder
SVT-AV1
Unvanquished
Primesieve
XNNPACK
New & Recently Updated Tests
Recently Updated Suites
Database Test Suite
Machine Learning
Steam
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>