home *** CD-ROM | disk | FTP | other *** search
/ Enter 2004 June / ENTER.ISO / files / xampp-win32-1.4.5-installer.exe / xampp / test_setup.php.dist < prev    next >
Encoding:
Text File  |  2004-03-24  |  731 b   |  37 lines

  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. ?>