TRUE, FALSE and MAYBE
[svn/Cll1h/.git] / demos / performance / test-results
index 8415d1ee6248287df19895d77b3957a534925277..2ccb4009540a35baa62544a8a8a34eeed5206a8c 100644 (file)
@@ -1,21 +1,21 @@
 #!/usr/bin/ruby
 
 10000000.times { print "stuff","\n" }
-Running...0:16.51 total, 14.79 user, 1.51 sys, 0 KB average size
+Running...0:16.66 total, 14.64 user, 1.70 sys
 
 #!/usr/bin/python
 
 for i in range(1,10000000):
  print "stuff"
 
-Running...0:09.04 total, 8.58 user, 0.20 sys, 0 KB average size
+Running...0:09.24 total, 8.48 user, 0.15 sys
 
 #!/usr/bin/python
 
 for i in xrange(1,10000000):
  print "stuff"
 
-Running...0:08.22 total, 8.15 user, 0.00 sys, 0 KB average size
+Running...0:08.31 total, 8.14 user, 0.01 sys
 
 #!/usr/bin/php5 -q
 <?php
@@ -24,7 +24,7 @@ for ( $i=0; $i<10000000; $i++ )
  echo "stuff1\n";
 }
 ?>
-Running...0:07.13 total, 5.00 user, 2.10 sys, 0 KB average size
+Running...0:07.30 total, 4.92 user, 2.09 sys
 
 #!/usr/bin/perl
 
@@ -34,7 +34,7 @@ for ($i=0;$i<10000000;$i++)
  print ("stuff");
 }
 
-Running...0:02.52 total, 2.50 user, 0.00 sys, 0 KB average size
+Running...0:02.48 total, 2.48 user, 0.00 sys
 
 #include <iostream>
 
@@ -47,8 +47,8 @@ int main()
  }
  return 0;
 }
-Compiling...0:00.37 total, 0.32 user, 0.04 sys, 0 KB average size
-Running...0:01.00 total, 1.00 user, 0.00 sys, 0 KB average size
+Compiling...0:00.37 total, 0.33 user, 0.04 sys
+Running...0:01.10 total, 1.05 user, 0.00 sys
 
 #include "cll1.h"
 
@@ -57,8 +57,8 @@ program
  repeat(10000000)
   print("stuff");
 }
-Compiling...0:00.09 total, 0.07 user, 0.02 sys, 0 KB average size
-Running...0:00.88 total, 0.88 user, 0.00 sys, 0 KB average size
+Compiling...0:00.09 total, 0.08 user, 0.01 sys
+Running...0:00.98 total, 0.91 user, 0.00 sys
 
 #include <stdio.h>
 
@@ -71,8 +71,8 @@ printf("stuff\n");
 }
 return 0;
 }
-Compiling...0:00.05 total, 0.04 user, 0.00 sys, 0 KB average size
-Running...0:00.67 total, 0.65 user, 0.02 sys, 0 KB average size
+Compiling...0:00.07 total, 0.06 user, 0.01 sys
+Running...0:00.62 total, 0.62 user, 0.00 sys
 
 #include <stdio.h>
 
@@ -85,8 +85,8 @@ puts("stuff");
 }
 return 0;
 }
-Compiling...0:00.09 total, 0.06 user, 0.02 sys, 0 KB average size
-Running...0:00.62 total, 0.62 user, 0.00 sys, 0 KB average size
+Compiling...0:00.06 total, 0.04 user, 0.01 sys
+Running...0:00.65 total, 0.62 user, 0.00 sys
 
 #include <stdio.h>
 
@@ -99,5 +99,5 @@ fputs("stuff\n",stdout);
 }
 return 0;
 }
-Compiling...0:00.06 total, 0.05 user, 0.00 sys, 0 KB average size
-Running...0:00.55 total, 0.55 user, 0.00 sys, 0 KB average size
+Compiling...0:00.06 total, 0.05 user, 0.00 sys
+Running...0:00.55 total, 0.55 user, 0.00 sys
This page took 0.128682 seconds and 4 git commands to generate.