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