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 Libtiff Decompression 1.0.1
pts/system-decompress-tiff-1.0.1
- 22 January 2013 -
AAdd a support-check.sh to the tiff2rgba.
downloads.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v4.4.0m0 (Forsand)--> <PhoronixTestSuite> <Downloads> <Package> <URL>http://sipi.usc.edu/database/misc.tar.gz</URL> <MD5>2959994695c27d480719ed4819e82232</MD5> <FileSize>12390452</FileSize> </Package> </Downloads> </PhoronixTestSuite>
install.sh
#!/bin/bash tar -xzf misc.tar.gz T2RGB=`which tiff2rgba` echo $? > ~/install-exit-status cat > system-decompress-tiff << EOT #!/bin/sh ST=\`date +%s.%N\` ${T2RGB} -c none misc/4.2.03.tiff mandril.rgba ET=\`date +%s.%N\` echo "(\$ET - \$ST) * 1000" | bc > \$LOG_FILE echo \$? > ~/test-exit-status EOT chmod +x system-decompress-tiff
interim.sh
#!/bin/sh rm mandril.rgba
results-definition.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v4.4.0m0 (Forsand)--> <PhoronixTestSuite> <ResultsParser> <OutputTemplate>#_RESULT_#</OutputTemplate> </ResultsParser> </PhoronixTestSuite>
support-check.sh
#!/bin/sh which tiff2rgba if [ $? -gt 0 ]; then echo "The system must provide tiff2rgba for this test profile. The tiff2rgba command is commonly provided by the libtiff-tools package." > $TEST_CUSTOM_ERROR fi
test-definition.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v4.4.0m0 (Forsand)--> <PhoronixTestSuite> <TestInformation> <Title>System Libtiff Decompression</Title> <Description>This test measures the time to decompress an image from TIFF to RGBA.</Description> <ResultScale>ms</ResultScale> <Proportion>LIB</Proportion> <TimesToRun>10</TimesToRun> </TestInformation> <TestProfile> <Version>1.0.1</Version> <SupportedPlatforms>Linux</SupportedPlatforms> <SoftwareType>Utility</SoftwareType> <TestType>Processor</TestType> <ExternalDependencies>build-utilities, zlib-development</ExternalDependencies> <Maintainer>Jim Kukunas</Maintainer> </TestProfile> </PhoronixTestSuite>