Subversion-Projekte lars-tiefland.php_share

Revision

Details | Letzte Änderung | Log anzeigen | RSS feed

Revision Autor Zeilennr. Zeile
1 lars 1
<?php
2
 
3
// if you get a max execution exceed error uncomment the following line
4
// and modify the time limit as needed
5
//set_time_limit(100);
6
 
7
 
8
$testcases = array(
9
    'MDB_manager_testcase',
10
    'MDB_api_testcase',
11
    'MDB_usage_testcase',
12
    'MDB_bugs_testcase',
13
);
14
 
15
$dbarray[] = array(
16
    'dsn' => array(
17
        'phptype' => 'pgsql',
18
        'username' => 'username',
19
        'password' => 'password',
20
        'hostspec' => 'hostname',
21
    ),
22
    'options' => array(
23
    )
24
);
25
$dbarray[] = array(
26
    'dsn' => array(
27
        'phptype' => 'mysql',
28
        'username' => 'username',
29
        'password' => 'password',
30
        'hostspec' => 'hostname',
31
    ),
32
    'options' => array(
33
        'UseTransactions' => TRUE
34
    )
35
);
36
 
37
// you may need to uncomment the line and modify the multiplier as you see fit
38
#set_time_limit(60*count($dbarray));
39
?>