TRUE, FALSE and MAYBE
[svn/Cll1h/.git] / demos / performance / test-results2
index e0876053bd32ec8dd19a2d7caff10a0d4fcbffc6..6948e05e5f89f1c27eb6b96895ab4b00a2f45540 100644 (file)
@@ -1,21 +1,21 @@
 #!/usr/bin/ruby
 
 10000000.times { print "stuff1"," ","stuff2","\n" }
-Running...0:24.98 total, 23.33 user, 1.54 sys, 0 KB average size
+Running...0:25.02 total, 23.30 user, 1.58 sys
 
 #!/usr/bin/python
 
 for i in range(1,10000000):
  print "stuff1","stuff2"
 
-Running...0:13.82 total, 13.59 user, 0.19 sys, 0 KB average size
+Running...0:13.46 total, 13.27 user, 0.18 sys
 
 #!/usr/bin/python
 
 for i in xrange(1,10000000):
  print "stuff1","stuff2"
 
-Running...0:13.24 total, 13.22 user, 0.00 sys, 0 KB average size
+Running...0:12.92 total, 12.89 user, 0.01 sys
 
 #!/usr/bin/php5 -q
 <?php 
@@ -24,7 +24,7 @@ for ( $i=0; $i<10000000; $i++ )
  echo "stuff1"." "."stuff2"."\n";
 }
 ?>
-Running...0:11.87 total, 9.74 user, 2.06 sys, 0 KB average size
+Running...0:11.38 total, 9.38 user, 2.00 sys
 
 #include <iostream>
 
@@ -37,8 +37,8 @@ int main()
  }
  return 0;
 }
-Compiling...0:00.37 total, 0.34 user, 0.03 sys, 0 KB average size
-Running...0:08.07 total, 6.14 user, 1.92 sys, 0 KB average size
+Compiling...0:00.36 total, 0.32 user, 0.04 sys
+Running...0:08.22 total, 6.07 user, 2.03 sys
 
 #!/usr/bin/perl
 
@@ -47,7 +47,7 @@ for ($i=0;$i<10000000;$i++)
 {
  print ("stuff1"," ","stuff2","\n");
 }
-Running...0:05.66 total, 5.64 user, 0.01 sys, 0 KB average size
+Running...0:05.74 total, 5.73 user, 0.00 sys
 
 #include <stdio.h>
 
@@ -60,8 +60,8 @@ int main (void)
  }
  return 0;
 }
-Compiling...0:00.06 total, 0.05 user, 0.00 sys, 0 KB average size
-Running...0:02.85 total, 2.84 user, 0.00 sys, 0 KB average size
+Compiling...0:00.05 total, 0.02 user, 0.02 sys
+Running...0:02.85 total, 2.84 user, 0.01 sys
 
 #include "cll1.h"
 
@@ -70,8 +70,8 @@ program
  repeat(10000000)
   print("stuff1","stuff2");
 }
-Compiling...0:00.10 total, 0.07 user, 0.02 sys, 0 KB average size
-Running...0:01.92 total, 1.92 user, 0.00 sys, 0 KB average size
+Compiling...0:00.09 total, 0.07 user, 0.02 sys
+Running...0:01.94 total, 1.92 user, 0.01 sys
 
 #include <stdio.h>
 
@@ -87,6 +87,6 @@ int main (void)
  }
  return 0;
 }
-Compiling...0:00.08 total, 0.04 user, 0.02 sys, 0 KB average size
-Running...0:01.53 total, 1.50 user, 0.00 sys, 0 KB average size
+Compiling...0:00.14 total, 0.04 user, 0.01 sys
+Running...0:01.56 total, 1.53 user, 0.01 sys
 
This page took 0.149906 seconds and 4 git commands to generate.