From f018377abaf54bd17a66c2454774013807cff0f9 Mon Sep 17 00:00:00 2001 From: Martin Berends Date: Tue, 9 Feb 2010 18:56:51 +0000 Subject: [PATCH] [Test.pm] turn off timestamps completely, for now. I'll be back... --- Test.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Test.pm b/Test.pm index d411d22b652..5523fc4bf72 100644 --- a/Test.pm +++ b/Test.pm @@ -43,7 +43,7 @@ multi sub plan($number_of_tests) is export { say '1..' ~ $number_of_tests; } - say '# t=' ~ time; +# say '# t=' ~ time; } multi sub pass($desc) is export { @@ -219,7 +219,7 @@ sub proclaim($cond, $desc) { print $todo_reason; } print "\n"; - say '# t=' ~ time; +# say '# t=' ~ time; if !$cond && $die_on_fail && !$todo_reason { die "Test failed. Stopping test";