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
Zstd Compression 1.0.1
system/compress-zstd-1.0.1
- 28 May 2018 -
Add Windows Zstd test support.
downloads.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v8.0.0m4--> <PhoronixTestSuite> <Downloads> <Package> <URL>http://old-releases.ubuntu.com/releases/16.04.3/ubuntu-16.04.3-server-i386.img</URL> <MD5>8428cead4ee139873da19248590e354f</MD5> <SHA256>2e763f7f3546be33ebc9a59311b2eee3b0b0c8e021fae65431c219b531d26d32</SHA256> <FileSize>834666496</FileSize> </Package> <Package> <URL>http://github.com/facebook/zstd/releases/download/v1.3.4/zstd-v1.3.4-win64.zip</URL> <MD5>c16aa54401b42fa75257938f38c79e10</MD5> <SHA256>b71f16f211aa0397a90e046ac4358c982ab9947c33e1004c933e69aee548ff26</SHA256> <FileSize>1221468</FileSize> <PlatformSpecific>Windows</PlatformSpecific> </Package> </Downloads> </PhoronixTestSuite>
install.sh
#!/bin/sh if which zstd>/dev/null 2>&1 ; then echo 0 > ~/install-exit-status else echo "ERROR: zstd is not found on the system! This test profile needs a working Zstandard zstd binary in the PATH." echo 2 > ~/install-exit-status fi cat > compress-zstd <<EOT #!/bin/sh zstd -19 ubuntu-16.04.3-server-i386.img > /dev/null 2>&1 EOT chmod +x compress-zstd
install_windows.sh
#!/bin/sh unzip -o zstd-v1.3.4-win64.zip cat > compress-zstd <<EOT #!/bin/sh ./zstd.exe -19 ubuntu-16.04.3-server-i386.img > /dev/null 2>&1 EOT chmod +x compress-zstd
interim.sh
#!/bin/sh rm -f ubuntu-16.04.3-server-i386.img.zst
post.sh
#!/bin/sh rm -f ubuntu-16.04.3-server-i386.img.zst
pre.sh
#!/bin/sh rm -f ubuntu-16.04.3-server-i386.img.zst
results-definition.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v8.0.0m4--> <PhoronixTestSuite> <SystemMonitor> <Sensor>sys.time</Sensor> </SystemMonitor> </PhoronixTestSuite>
test-definition.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v8.0.0m4--> <PhoronixTestSuite> <TestInformation> <Title>Zstd Compression</Title> <Description>This test measures the time needed to compress a sample file (an Ubuntu file-system image) using Zstd compression supplied by the system or otherwise externally of the test profile.</Description> <ResultScale>Seconds</ResultScale> <Proportion>LIB</Proportion> <SubTitle>Compressing ubuntu-16.04.3-server-i386.img, Compression Level 19</SubTitle> <TimesToRun>3</TimesToRun> </TestInformation> <TestProfile> <Version>1.0.1</Version> <SupportedPlatforms>Linux, BSD, Solaris, Windows</SupportedPlatforms> <SoftwareType>Utility</SoftwareType> <TestType>Processor</TestType> <License>Free</License> <Status>Verified</Status> <ExternalDependencies>build-utilities</ExternalDependencies> <EnvironmentSize>848</EnvironmentSize> <EnvironmentTestingSize>256</EnvironmentTestingSize> <ProjectURL>http://github.com/facebook/zstd</ProjectURL> <Maintainer>Victor Rodriguez</Maintainer> <SystemDependencies>zstd</SystemDependencies> </TestProfile> </PhoronixTestSuite>