[limb-svn] r6361 - 3.x/trunk/limb/macro/tests/bench

svn at limb-project.com svn at limb-project.com
Tue Oct 2 08:58:59 MSD 2007


Author: pachanga
Date: 2007-10-02 08:58:59 +0400 (Tue, 02 Oct 2007)
New Revision: 6361
URL: http://fisheye.limb-project.com/changelog/limb/?cs=6361

Added:
   3.x/trunk/limb/macro/tests/bench/macro-force.php
   3.x/trunk/limb/macro/tests/bench/macro.php
Removed:
   3.x/trunk/limb/macro/tests/bench/forcecompile.php
   3.x/trunk/limb/macro/tests/bench/nocompile.php
Log:
-- giving better names to scripts

Deleted: 3.x/trunk/limb/macro/tests/bench/forcecompile.php
===================================================================
--- 3.x/trunk/limb/macro/tests/bench/forcecompile.php	2007-10-02 04:57:09 UTC (rev 6360)
+++ 3.x/trunk/limb/macro/tests/bench/forcecompile.php	2007-10-02 04:58:59 UTC (rev 6361)
@@ -1,18 +0,0 @@
-<?php
-
-set_include_path(dirname(__FILE__) . '/../../../../');
-require_once('limb/core/common.inc.php');
-require_once('limb/macro/src/lmbMacroTemplate.class.php');
-
-include('start.inc.php');
-
-$config = new lmbMacroConfig('/tmp/macro', true, true, array(dirname(__FILE__) . '/tpl'));
-
-for($i=0;$i<1000;$i++)
-{
-  $tpl = new lmbMacroTemplate('simple.phtml', $config);
-  $tpl->set('name', 'Bob');
-  $tpl->render();
-}
-
-include('end.inc.php');

Copied: 3.x/trunk/limb/macro/tests/bench/macro-force.php (from rev 6359, 3.x/trunk/limb/macro/tests/bench/forcecompile.php)
===================================================================
--- 3.x/trunk/limb/macro/tests/bench/macro-force.php	                        (rev 0)
+++ 3.x/trunk/limb/macro/tests/bench/macro-force.php	2007-10-02 04:58:59 UTC (rev 6361)
@@ -0,0 +1,18 @@
+<?php
+
+set_include_path(dirname(__FILE__) . '/../../../../');
+require_once('limb/core/common.inc.php');
+require_once('limb/macro/src/lmbMacroTemplate.class.php');
+
+include('start.inc.php');
+
+$config = new lmbMacroConfig('/tmp/macro', true, true, array(dirname(__FILE__) . '/tpl'));
+
+for($i=0;$i<1000;$i++)
+{
+  $tpl = new lmbMacroTemplate('simple.phtml', $config);
+  $tpl->set('name', 'Bob');
+  $tpl->render();
+}
+
+include('end.inc.php');

Copied: 3.x/trunk/limb/macro/tests/bench/macro.php (from rev 6359, 3.x/trunk/limb/macro/tests/bench/nocompile.php)
===================================================================
--- 3.x/trunk/limb/macro/tests/bench/macro.php	                        (rev 0)
+++ 3.x/trunk/limb/macro/tests/bench/macro.php	2007-10-02 04:58:59 UTC (rev 6361)
@@ -0,0 +1,18 @@
+<?php
+
+set_include_path(dirname(__FILE__) . '/../../../../');
+require_once('limb/core/common.inc.php');
+require_once('limb/macro/src/lmbMacroTemplate.class.php');
+
+include('start.inc.php');
+
+$config = new lmbMacroConfig('/tmp/macro', false, false, array(dirname(__FILE__) . '/tpl'));
+
+for($i=0;$i<1000;$i++)
+{
+  $tpl = new lmbMacroTemplate('simple.phtml', $config);
+  $tpl->set('name', 'Bob');
+  $tpl->render();
+}
+
+include('end.inc.php');

Deleted: 3.x/trunk/limb/macro/tests/bench/nocompile.php
===================================================================
--- 3.x/trunk/limb/macro/tests/bench/nocompile.php	2007-10-02 04:57:09 UTC (rev 6360)
+++ 3.x/trunk/limb/macro/tests/bench/nocompile.php	2007-10-02 04:58:59 UTC (rev 6361)
@@ -1,18 +0,0 @@
-<?php
-
-set_include_path(dirname(__FILE__) . '/../../../../');
-require_once('limb/core/common.inc.php');
-require_once('limb/macro/src/lmbMacroTemplate.class.php');
-
-include('start.inc.php');
-
-$config = new lmbMacroConfig('/tmp/macro', false, false, array(dirname(__FILE__) . '/tpl'));
-
-for($i=0;$i<1000;$i++)
-{
-  $tpl = new lmbMacroTemplate('simple.phtml', $config);
-  $tpl->set('name', 'Bob');
-  $tpl->render();
-}
-
-include('end.inc.php');



More information about the limb-svn mailing list