Author: Thibaut Paumard <paumard@users.sourceforge.net>
Description: remove Build-Dependency on yorick-yutils
 The test suite uses "utils.i" from yorick-yutils for benchmarking. It
 is useless for our purpose, so this patch de-activates timing and we
 can drop this BD.
Forwarded: not-needed

--- a/yeti/yeti_hash_test.i
+++ b/yeti/yeti_hash_test.i
@@ -1,3 +1,6 @@
+// This test file has been modified to ease autobuilding of the Debian package.
+// To get speed tests, install the yorick-yutils package and uncomment
+// the three lines commented with "//" below.
 
 func eval_me(self, x, y)
 {
@@ -61,7 +64,7 @@
 
 func h_test(repeat)
 {
-  require, "utils.i";
+  // require, "utils.i";
   if (is_void(repeat)) repeat = 1;
   names = ["B_nu", "B_nu_bar", "B_nu_scale", "GISTPATH", "GIST_FORMAT",
            "HX_blkbnd", "HX_block", "LPR_FORMAT", "LUrcond", "LUsolve",
@@ -283,14 +286,14 @@
   
   /* Speed test (can also be used to detect memory leaks). */
   write, "";
-  timer_start;
+  // timer_start;
   for (k = 1; k <= repeat; ++k) { 
     tab = h_new();
     for (i = 1; i <= n; ++i) {
       h_set, tab, names(i), i;
     }
   }
-  timer_elapsed, repeat;
+  // timer_elapsed, repeat;
 
   stat = h_stat(tab);
   h_analyse, stat;
