-
Notifications
You must be signed in to change notification settings - Fork 84
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added NAME, AUTHOR etc. variables to the control files.
Signed-off-by: Travis Miller <[email protected]>
- Loading branch information
Travis Miller
committed
Jul 9, 2008
1 parent
1192b56
commit 09b3e2d
Showing
6 changed files
with
83 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,18 @@ | ||
NAME = 'System Evaluation Benchmark' | ||
AUTHOR = 'Anton Blanchard <[email protected]>' | ||
TIME = 'MEDIUM' | ||
TEST_CLASS = 'IO' | ||
TEST_CATEGORY = 'Benchmark' | ||
TEST_TYPE = 'client' | ||
EXPERIMENTAL = 'True' | ||
|
||
DOC = """ | ||
The idea is to quickly get an impression about system performance for MySQL | ||
usage without setting up complex benchmark and even without installing MySQL. | ||
In some cases this is very helpful. This is also the reason for having | ||
everything in simple file not depending on any external libraries. | ||
""" | ||
|
||
build = 1 | ||
for threads in range(1, count_cpus()+1): | ||
job.run_test('sysbench', db_type='pgsql', build=build, \ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,19 @@ | ||
NAME = 'TBench' | ||
AUTHOR = '[email protected] (Martin Bligh)' | ||
TIME = 'MEDIUM' | ||
TEST_CLASS = 'IO' | ||
TEST_CATEGORY = 'Benchmark' | ||
TEST_TYPE = 'client' | ||
EXPERIMENTAL = 'True' | ||
|
||
DOC = """ | ||
tbench produces only the TCP and process load. It does the same socket | ||
calls that smbd would do under a netbench load. It does no filesystem | ||
calls. The idea behind tbench is to eliminate smbd from the netbench | ||
test, as though the smbd code could be made infinately fast. The | ||
throughput results of tbench tell us how fast a netbench run could go | ||
if we eliminated all filesystem IO and SMB packet processing. tbench | ||
is built as part of the dbench package. | ||
""" | ||
|
||
job.run_test('tbench') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,13 @@ | ||
NAME = 'Threaded IO Bench' | ||
AUTHOR = '[email protected]' | ||
TIME = 'MEDIUM' | ||
TEST_CLASS = 'IO' | ||
TEST_CATEGORY = 'Benchmark' | ||
TEST_TYPE = 'client' | ||
EXPERIMENTAL = 'True' | ||
|
||
DOC = """ | ||
Performs threaded I/O benchmarks. | ||
""" | ||
|
||
job.run_test('tiobench', '/mnt') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,15 @@ | ||
NAME = 'Check TSC' | ||
AUTHOR = 'Michael Davidson <[email protected]>' | ||
TIME = 'MEDIUM' | ||
TEST_CLASS = 'Kernel' | ||
TEST_CATEGORY = 'Functional' | ||
TEST_TYPE = 'client' | ||
EXPERIMENTAL = 'True' | ||
|
||
DOC = """ | ||
checktsc is a user space program that checks TSC synchronization | ||
between pairs of CPUs on an SMP system using a technique borrowed | ||
from the Linux 2.6.18 kernel. | ||
""" | ||
|
||
job.run_test('tsc') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,13 @@ | ||
NAME = 'Unix Bench' | ||
AUTHOR = '[email protected]' | ||
TIME = 'MEDIUM' | ||
TEST_CLASS = 'Kernel' | ||
TEST_CATEGORY = 'Benchmark' | ||
TEST_TYPE = 'client' | ||
EXPERIMENTAL = 'False' | ||
|
||
DOC = """ | ||
Performs the standard Unixbench suite of tests (v4.1). | ||
""" | ||
|
||
job.run_test('unixbench') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,13 @@ | ||
NAME = 'Xen Test' | ||
AUTHOR = 'Paul Larson <[email protected]>' | ||
TIME = 'MEDIUM' | ||
TEST_CLASS = 'Kernel' | ||
TEST_CATEGORY = 'Functional' | ||
TEST_TYPE = 'client' | ||
EXPERIMENTAL = 'True' | ||
|
||
DOC = """ | ||
This suite provides a framework for testing the Xen userspace tools. | ||
""" | ||
|
||
job.run_test('xmtest', '-e [email protected] -d xmtest') |