Changeset 23483
- Timestamp:
- 10/31/09 20:46:27 (4 years ago)
- Files:
-
- tools/routing_performance/routing_performance.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
tools/routing_performance/routing_performance.php
r23482 r23483 11 11 require_once dirname(__FILE__).'/'.$patch.'/sfPatternRoutingNew.class.php'; 12 12 13 $t = new lime_test(null); 13 class lime_output_filter_ok extends lime_output 14 { 15 public function echoln($message, $colorizer_parameter = null, $colorize = true) 16 { 17 if (!preg_match('/(?:^|\.)(ok *\d*)\b/', $message)) 18 { 19 parent::echoln($message, $colorizer_parameter, $colorize); 20 } 21 } 22 } 23 24 $t = new lime_test(null, array('output' => new lime_output_filter_ok())); 14 25 15 26 $t->diag(sprintf('testing patch %s with test harness $Revision$', $patch));