Changeset 1101

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

adding info message for location of summary report

Files:

Legend:

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

    r1100 r1101  
    588588        $contents = ob_get_clean(); 
    589589         
    590         file_put_contents($summaryFile, $contents); 
     590        $res = file_put_contents($summaryFile, $contents) > 0; 
     591        if ($res) { 
     592            $this->info('Summary Report available at: '.$summaryFile); 
     593        } else { 
     594            $this->error('Could not generate Summary Report: '.$summaryFile); 
     595        } 
    591596    } 
    592597    function _generateReport($xmlFile,$php,$env)