Tests
Suites
Latest Results
Search
Register
Login
Popular Tests
Timed Linux Kernel Compilation
SVT-AV1
7-Zip Compression
Stockfish
FFmpeg
x265
Newest Tests
Rustls
LiteRT
WarpX
Epoch
Valkey
Whisperfile
Recently Updated Tests
Mobile Neural Network
ACES DGEMM
NWChem
SuperTuxKart
ASTC Encoder
SVT-AV1
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 GZIP Decompression 1.1.0
pts/system-decompress-gzip-1.1.0
- 28 January 2013 -
Fix-gzip patch courtesy of Arjan van de Ven.
downloads.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v4.4.0m1 (Forsand)--> <PhoronixTestSuite> <Downloads> <Package> <URL>http://releases.qt-project.org/qt5/5.0.0/single/qt-everywhere-opensource-src-5.0.0.tar.gz</URL> <MD5>1a1b73f913a965f6b0cf02bb820c8a03</MD5> <FileSize>229374296</FileSize> </Package> </Downloads> </PhoronixTestSuite>
install.sh
#!/bin/bash GZIP=`which gzip` echo $? > ~/install-exit-status cat > system-decompress-gzip << EOT #!/bin/sh ${GZIP} -d --stdout qt-everywhere-opensource-src-5.0.0.tar.gz > /dev/null 2>&1 echo -e "\n" >> \${LOG_FILE} EOT chmod +x system-decompress-gzip
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 gzip if [ $? -gt 0 ]; then echo "The system must provide gzip 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 GZIP Decompression</Title> <Description>This test measures the time to decompress a gzipped tarball.</Description> <ResultScale>Seconds</ResultScale> <Proportion>LIB</Proportion> <TimesToRun>3</TimesToRun> </TestInformation> <TestProfile> <Version>1.1.0</Version> <SupportedPlatforms>Linux</SupportedPlatforms> <SoftwareType>Utility</SoftwareType> <TestType>Processor</TestType> <Maintainer>Jim Kukunas</Maintainer> </TestProfile> </PhoronixTestSuite>