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
Apache Benchmark 1.5.2
pts/apache-1.5.2
- 28 January 2013 -
Apache test profile works on PC-BSD 9.1.
downloads.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v4.4.0m1 (Forsand)--> <PhoronixTestSuite> <Downloads> <Package> <URL>http://www.apache.org/dist/httpd/httpd-2.4.3.tar.gz, http://archive.apache.org/dist/httpd/httpd-2.4.3.tar.gz, http://www.bizdirusa.com/mirrors/apache//httpd/httpd-2.4.3.tar.gz</URL> <MD5>538dccd22dd18466fff3ec7948495417</MD5> <FileSize>6137268</FileSize> </Package> <Package> <URL>http://www.phoronix-test-suite.com/benchmark-files/apache-ab-test-files-1.tar.gz, http://www.phoronix.net/downloads/phoronix-test-suite/benchmark-files/apache-ab-test-files-1.tar.gz</URL> <MD5>ca0c5bf0dd482a2847c68a52c0759942</MD5> <FileSize>6008</FileSize> </Package> <Package> <URL>http://mirror.cogentco.com/pub/apache//apr/apr-1.4.6.tar.gz</URL> <MD5>76cc4457fbb71eefdafa27dba8f511fb</MD5> <FileSize>982243</FileSize> </Package> <Package> <URL>http://mirror.cogentco.com/pub/apache//apr/apr-util-1.4.1.tar.gz</URL> <MD5>666a5d56098a9debf998510e304c8095</MD5> <FileSize>774770</FileSize> </Package> </Downloads> </PhoronixTestSuite>
install.sh
#!/bin/sh mkdir $HOME/httpd_ tar -zxvf apache-ab-test-files-1.tar.gz tar -zxvf httpd-2.4.3.tar.gz tar -zxvf apr-util-1.4.1.tar.gz tar -zxvf apr-1.4.6.tar.gz mv apr-1.4.6 httpd-2.4.3/srclib/apr mv apr-util-1.4.1 httpd-2.4.3/srclib/apr-util cd httpd-2.4.3/ ./configure --prefix=$HOME/httpd_ --with-included-apr make -j $NUM_CPU_JOBS echo $? > ~/install-exit-status make install cd ~ rm -rf httpd-2.4.3/ rm -rf httpd_/manual/ patch -p0 < CHANGE-APACHE-PORT.patch mv -f test.html httpd_/htdocs/ mv -f pts.png httpd_/htdocs/ echo "#!/bin/sh ./httpd_/bin/ab \$@ > \$LOG_FILE 2>&1 echo \$? > ~/test-exit-status" > apache chmod +x apache
post.sh
#!/bin/sh ./httpd_/bin/apachectl -k stop rm -f httpd_/logs/* sleep 3
pre.sh
#!/bin/sh ./httpd_/bin/apachectl -k start -f $HOME/httpd_/conf/httpd.conf sleep 5
results-definition.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v4.4.0m1 (Forsand)--> <PhoronixTestSuite> <ResultsParser> <OutputTemplate>Document Path: /test.html Document Length: 3064 bytes Concurrency Level: 100 Time taken for tests: 29.224 seconds Complete requests: 500000 Failed requests: 0 Write errors: 0 Total transferred: 1659096222 bytes HTML transferred: 1532088856 bytes Requests per second: #_RESULT_# [#/sec] (mean) Time per request: 5.845 [ms] (mean) Time per request: 0.058 [ms] (mean, across all concurrent requests) Transfer rate: 55440.49 [Kbytes/sec] received</OutputTemplate> </ResultsParser> </PhoronixTestSuite>
test-definition.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v4.4.0m1 (Forsand)--> <PhoronixTestSuite> <TestInformation> <Title>Apache Benchmark</Title> <AppVersion>2.4.3</AppVersion> <Description>This is a test of ab, which is the Apache benchmark program. This test profile measures how many requests per second a given system can sustain when carrying out 700,000 requests with 100 requests being carried out concurrently.</Description> <ResultScale>Requests Per Second</ResultScale> <Proportion>HIB</Proportion> <SubTitle>Static Web Page Serving</SubTitle> <TimesToRun>3</TimesToRun> </TestInformation> <TestProfile> <Version>1.5.2</Version> <SupportedPlatforms>Linux, Solaris, BSD</SupportedPlatforms> <SoftwareType>Utility</SoftwareType> <TestType>System</TestType> <License>Free</License> <Status>Verified</Status> <ExternalDependencies>build-utilities, perl</ExternalDependencies> <EnvironmentSize>365</EnvironmentSize> <ProjectURL>http://www.apache.org/</ProjectURL> <InternalTags>SMP</InternalTags> <Maintainer>Michael Larabel</Maintainer> </TestProfile> <TestSettings> <Default> <Arguments>-n 700000 -c 100 http://localhost:8088/test.html</Arguments> </Default> </TestSettings> </PhoronixTestSuite>