Remove timing from test output

--- cython-3.0.12/runtests.py.orig
+++ cython-3.0.12/runtests.py
@@ -714,7 +714,6 @@
             lines.append("%-12s: %8.2f sec  (%4d, %6.3f / run) - slowest: %s\n" % (
                 metric, t, count, t / count,
                 ', '.join("'{2}:{1}' ({0:.2f}s)".format(*item) for item in heapq.nlargest(self.top_n, top))))
-        out.write(''.join(lines))
 
 
 class TestBuilder(object):
@@ -2647,7 +2646,6 @@
                 if stop:
                     return
                 sleep(1./4)
-            write('\n#### %s\n' % now())
 
     thread = threading.Thread(target=time_stamper, name='time_stamper')
     thread.daemon = True