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
ACES DGEMM
NWChem
SuperTuxKart
ASTC Encoder
SVT-AV1
Unvanquished
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
Gcrypt Library 1.1.3
pts/gcrypt-1.1.3
- 06 December 2021 -
Fix install-exit-status handling.
downloads.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v10.8.0m1--> <PhoronixTestSuite> <Downloads> <Package> <URL>http://mirrors.dotsrc.org/gcrypt/libgcrypt/libgcrypt-1.9.1.tar.bz2, https://gnupg.org/ftp/gcrypt/libgcrypt/libgcrypt-1.9.1.tar.bz2</URL> <MD5>8805f3e466af315222b6e1864f52b79a</MD5> <SHA256>c5a67a8b9b2bd370fb415ed1ee31c7172e5683076493cf4a3678a0fbdf0265d9</SHA256> <FileName>libgcrypt-1.9.1.tar.bz2</FileName> <FileSize>3202683</FileSize> </Package> <Package> <URL>ftp://ftp.gnupg.org/gcrypt/libgpg-error/libgpg-error-1.41.tar.bz2, http://mirrors.dotsrc.org/gcrypt/libgpg-error/libgpg-error-1.41.tar.bz2</URL> <MD5>36e9e7e6fffefac1eae5a1a49f14ac4f</MD5> <SHA256>64b078b45ac3c3003d7e352a5e05318880a5778c42331ce1ef33d1a0d9922742</SHA256> <FileName>libgpg-error-1.41.tar.bz2</FileName> <FileSize>967117</FileSize> </Package> </Downloads> </PhoronixTestSuite>
install.sh
#!/bin/sh mkdir $HOME/gpgerror tar -jxf libgpg-error-1.41.tar.bz2 cd libgpg-error-1.41/ ./configure --prefix=$HOME/gpgerror make -j $NUM_CPU_CORES echo $? > ~/install-exit-status make install cd ~ rm -rf libgpg-error-1.41/ tar -jxf libgcrypt-1.9.1.tar.bz2 cd libgcrypt-1.9.1/ ./configure --with-gpg-error-prefix=$HOME/gpgerror make -j $NUM_CPU_CORES echo $? > ~/install-exit-status cd ~ echo "#!/bin/sh ./libgcrypt-1.9.1/tests/benchmark \$@ > \$LOG_FILE 2>&1 echo \$? > ~/test-exit-status" > gcrypt chmod +x gcrypt
results-definition.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v10.8.0m1--> <PhoronixTestSuite> <SystemMonitor> <Sensor>sys.time</Sensor> </SystemMonitor> </PhoronixTestSuite>
test-definition.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v10.8.0m1--> <PhoronixTestSuite> <TestInformation> <Title>Gcrypt Library</Title> <AppVersion>1.9</AppVersion> <Description>Libgcrypt is a general purpose cryptographic library developed as part of the GnuPG project. This is a benchmark of libgcrypt's integrated benchmark and is measuring the time to run the benchmark command with a cipher/mac/hash repetition count set for 50 times as simple, high level look at the overall crypto performance of the system under test.</Description> <ResultScale>Seconds</ResultScale> <Proportion>LIB</Proportion> <TimesToRun>3</TimesToRun> </TestInformation> <TestProfile> <Version>1.1.3</Version> <SupportedPlatforms>Linux, Solaris, BSD</SupportedPlatforms> <SoftwareType>Utility</SoftwareType> <TestType>Processor</TestType> <License>Free</License> <Status>Verified</Status> <ExternalDependencies>build-utilities</ExternalDependencies> <EnvironmentSize>148</EnvironmentSize> <ProjectURL>https://gnupg.org/software/libgcrypt/index.html</ProjectURL> <RepositoryURL>https://github.com/gpg/libgcrypt</RepositoryURL> <Maintainer>Michael Larabel</Maintainer> </TestProfile> <TestSettings> <Default> <Arguments>--cipher-repetitions 50 --mac-repetitions 50 --hash-repetitions 50</Arguments> </Default> </TestSettings> </PhoronixTestSuite>