Changeset 969

Show
Ignore:
Timestamp:
07/25/08 12:30:27 (3 months ago)
Author:
arnoschn
Message:

ci-tests: adding aliases for running postgres tests: pgsql, postgresql,postgressql, pg

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/arnoschn/cache/script/extras/xinc-ci_tests.php

    r963 r969  
    5555        while (count($args) > 0){ 
    5656            $arg = array_shift($args); 
     57            $arg = strtolower($arg); 
     58            if (in_array($arg,array('postgresql','postgressql','pgsql','pg'))) { 
     59                $arg = 'postgres'; 
     60            } 
    5761            if (array_key_exists(strtolower($arg),$this->settings['executables'])){ 
    5862                $this->target_executables[] = $arg;