From 7d9d8f1b73db5ca785e948f47a0ff8b86da8bdbd Mon Sep 17 00:00:00 2001 From: Wouter van Oijen Date: Sat, 15 Jul 2006 20:38:35 +0000 Subject: [PATCH] Removing diag to clean up smoke test output --- t/syntaxCheck.t | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/t/syntaxCheck.t b/t/syntaxCheck.t index 53c07c1fd..536065033 100644 --- a/t/syntaxCheck.t +++ b/t/syntaxCheck.t @@ -21,14 +21,14 @@ plan skip_all => 'set TEST_SYNTAX to enable this test' unless $ENV{TEST_SYNTAX}; my @modules; my $wgLib = WebGUI::Test->lib; -diag("Checking modules in $wgLib"); +#diag("Checking modules in $wgLib"); File::Find::find( \&getWebGUIModules, $wgLib); my $numTests = scalar @modules; plan tests => $numTests; -diag("Planning on $numTests tests"); +#diag("Planning on $numTests tests"); foreach my $package (@modules) { my $command = "$^X -I$wgLib -wc $package 2>&1";