Development

Changeset 4245

You must first sign up to be able to contribute.

Changeset 4245

Show
Ignore:
Timestamp:
06/18/07 20:45:30 (1 year ago)
Author:
fabien
Message:

lime: added a test to check for xdebug.extended_info when doing a code coverage (closes #1708)

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • tools/lime/trunk/lib/lime.php

    r4115 r4245  
    586586    { 
    587587      throw new Exception('You must install and enable xdebug before using lime coverage.'); 
     588    } 
     589 
     590    if (!ini_get('xdebug.extended_info')) 
     591    { 
     592      throw new Exception('You must set xdebug.extended_info to 1 in your php.ini to use lime coverage.'); 
    588593    } 
    589594