1AUTHOR = "markwkm <markwkm@us...>" 2NAME = "dbt2" 3TEST_CLASS = "kernel" 4TEST_CATEGORY = "Functional" 5TEST_TYPE = "client" 6DOC = """ 7Dbt-2 is a fair-use implementation of the TPC-C benchmark. The test is 8currently hardcoded to use PostgreSQL but the kit also supports MySQL. 9""" 10TIME="SHORT" 11 12job.run_test('dbt2', db_type='pgsql', args='-w 1 -c 20 -d 1800 -s 100 -n -z "autotest pgsql"', tag='pgsql') 13job.run_test('dbt2', db_type='pgpool', args='-w 1 -c 20 -d 1800 -s 100 -n -z "autotest pgpool"', tag='pgpool') 14job.run_test('dbt2', db_type='mysql', args='-w 1 -c 20 -d 1800 -s 100 -n -z "autotest mysql"', tag='mysql') 15