|
I have tried redirecting STDERR and STDOUT and it still goes to the screen.
#open ( STDOUT, "> nul" ) or die $!;
#open ( STDERR, "> nul" ) or die $!;
open STDERR, '>nul';
open STDOUT, '>nul';
if ( is_number $this_element ) {...
close STDERR;
close STDOUT;
It still blasts away on each compare and it proudly declares how many tests it ran.
|