Changeset 1111

Show
Ignore:
Timestamp:
09/07/08 14:50:53 (3 months ago)
Author:
arnoschn
Message:

--

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/arnoschn/cache/lib/utils/scripts/ci-test.php

    r1109 r1111  
    192192            $this->_createCiPhpConfigFile(); 
    193193        } 
    194         $returnVal = $this->_checkWebserver2($this->settings['test-url']) && $returnVal; 
     194         
    195195        return $returnVal; 
    196196        // if all passes return true 
     
    695695    { 
    696696        $this->drawBox(array($filename,strtoupper($environment),$php)); 
    697  
     697        $returnVal = $this->_checkWebserver2($this->settings['test-url']); 
     698        if (!$returnVal) { 
     699            $this->error('Webserver is not configured properly. Exiting',true); 
     700        } 
    698701        if ($this->prepareEnvironment($environment)){ 
    699702            $xmlFile = getcwd().DIRECTORY_SEPARATOR.'test-results-'.$php.'-'.str_replace(' ','-',$environment).'.xml';