Tests
Suites
Latest Results
Search
Register
Login
Popular Tests
Timed Linux Kernel Compilation
SVT-AV1
7-Zip Compression
Stockfish
x265
FFmpeg
Newest Tests
LiteRT
WarpX
Epoch
Valkey
Whisperfile
XNNPACK
Recently Updated Tests
ASTC Encoder
SVT-AV1
Unvanquished
Primesieve
XNNPACK
oneDNN
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
System BZIP2 Decompression 1.0.2
pts/system-decompress-bzip2-1.0.2
- 29 January 2013 -
This test profile works on BSD.
downloads.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v4.4.0m1 (Forsand)--> <PhoronixTestSuite> <Downloads> <Package> <URL>http://www.kernel.org/pub/linux/kernel/v3.x/linux-3.7.tar.bz2</URL> <MD5>5323f3faadd051e83af605a63be5ea2e</MD5> <FileSize>83671392</FileSize> </Package> </Downloads> </PhoronixTestSuite>
install.sh
#!/bin/bash BZIP=`which bzip2` echo $? > ~/install-exit-status cat > system-decompress-bzip2 << EOT #!/bin/sh ${BZIP} -dk linux-3.7.tar.bz2 --stdout > /dev/null 2>&1 EOT chmod +x system-decompress-bzip2
results-definition.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v4.4.0m1 (Forsand)--> <PhoronixTestSuite> <SystemMonitor> <Sensor>sys.time</Sensor> </SystemMonitor> </PhoronixTestSuite>
support-check.sh
#!/bin/sh which bzip2 if [ $? -gt 0 ]; then echo "The system must provide bzip2 for this test profile." > $TEST_CUSTOM_ERROR fi
test-definition.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v4.4.0m1 (Forsand)--> <PhoronixTestSuite> <TestInformation> <Title>System BZIP2 Decompression</Title> <Description>This test measures the time to decompress a Linux kernel tarball using BZIP2.</Description> <ResultScale>Seconds</ResultScale> <Proportion>LIB</Proportion> <TimesToRun>3</TimesToRun> </TestInformation> <TestProfile> <Version>1.0.2</Version> <SupportedPlatforms>Linux, BSD</SupportedPlatforms> <SoftwareType>Utility</SoftwareType> <TestType>Processor</TestType> <Maintainer>Jim Kukunas</Maintainer> </TestProfile> </PhoronixTestSuite>