Tests
Suites
Latest Results
Register
Login
Popular Tests
Timed Linux Kernel Compilation
Timed HMMer Search
Blender
AOM AV1
Selenium
AI Benchmark Alpha
Newest Tests
Helsing
SecureMark
F1 2020
OpenSCAD
Timed Mesa Compilation
Timed Node.js Compilation
Recently Updated Tests
LuxCoreRender
MariaDB
CP2K Molecular Dynamics
SHOC Scalable HeterOgeneous Computing
Botan
New & Recently Updated Tests
Recently Updated Suites
NVIDIA GPU Compute
Cryptography
Steam
New & Recently Updated Suites
Currently Trending Results
Odroid N2 Storage Performance
Odroid N2 Storage Performance
combined-2
cc21assignment2
CC21Assignment2
Odroid N2 Storage Performance
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.2.0
pts/compress-lzma-1.2.0
- 06 December 2010 -
Initial import into OpenBenchmarking.org
downloads.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v3.0.0a3 (Iveland) [ http://www.phoronix-test-suite.com/ ]--> <PhoronixTestSuite> <Downloads> <Package> <URL>http://mirror.internode.on.net/pub/gentoo-portage/distfiles/lzma-4.32.6.tar.gz, http://buildroot.uclibc.org/downloads/sources/lzma-4.32.6.tar.gz</URL> <MD5>211d6207fdd7f20eaaae1bbdeb357d3a</MD5> <FileSize>478661</FileSize> </Package> </Downloads> </PhoronixTestSuite>
install.sh
#!/bin/sh mkdir $HOME/lzma_ tar -zxvf lzma-4.32.6.tar.gz cd lzma-4.32.6 ./configure --prefix=$HOME/lzma_ make -j $NUM_CPU_JOBS echo $? > ~/install-exit-status make install cd .. rm -rf lzma-4.32.6 cat > compress-lzma <<EOT #!/bin/sh ./lzma_/bin/lzma -q -c ./compressfile > /dev/null 2>&1 EOT chmod +x compress-lzma
post.sh
#!/bin/sh rm -f compressfile
pre.sh
#!/bin/sh dd if=/dev/urandom of=compressfile bs=1M count=256
results-definition.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v3.0.0a3 (Iveland) [ http://www.phoronix-test-suite.com/ ]--> <PhoronixTestSuite> <SystemMonitor> <Sensor>sys.time</Sensor> </SystemMonitor> </PhoronixTestSuite>
test-definition.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v3.0.0a3 (Iveland) [ http://www.phoronix-test-suite.com/ ]--> <PhoronixTestSuite> <TestInformation> <Title>LZMA Compression</Title> <Description>This test measures the time needed to compress a file using LZMA compression.</Description> <ResultScale>Seconds</ResultScale> <Proportion>LIB</Proportion> <SubTitle>256MB File Compression</SubTitle> <TimesToRun>3</TimesToRun> </TestInformation> <TestProfile> <Version>1.2.0</Version> <SupportedPlatforms>Linux, BSD, Solaris</SupportedPlatforms> <SoftwareType>Utility</SoftwareType> <TestType>Processor</TestType> <License>Free</License> <Status>Verified</Status> <ExternalDependencies>build-utilities</ExternalDependencies> <EnvironmentSize>0.7</EnvironmentSize> <EnvironmentTestingSize>256</EnvironmentTestingSize> <ProjectURL>http://www.7-zip.org/sdk.html</ProjectURL> <Maintainer>apaige</Maintainer> </TestProfile> </PhoronixTestSuite>