From: <ssc...@us...> - 2003-03-11 08:09:27
|
Update of /cvsroot/popfile/engine/tests In directory sc8-pr-cvs1:/tmp/cvs-serv22622 Modified Files: Tag: v0/18/1 TestBayes.tst Log Message: set binmode on temp output file for tests Index: TestBayes.tst =================================================================== RCS file: /cvsroot/popfile/engine/tests/TestBayes.tst,v retrieving revision 1.4 retrieving revision 1.4.2.1 diff -C2 -d -r1.4 -r1.4.2.1 *** TestBayes.tst 20 Feb 2003 21:36:42 -0000 1.4 --- TestBayes.tst 11 Mar 2003 08:09:25 -0000 1.4.2.1 *************** *** 61,64 **** --- 61,65 ---- for my $modify_file (@modify_tests) { if ( ( open MSG, "<$modify_file" ) && ( open OUTPUT, ">tests/temp.out" ) ) { + binmode OUTPUT; $b->classify_and_modify( \*MSG, \*OUTPUT, 0, 0, 0, '' ); close MSG; |