[parchive2-cvs] library/src/tests/file test_file_module.cc,1.15,1.16
Status: Pre-Alpha
Brought to you by:
coppit
|
From: <co...@us...> - 2003-05-07 01:39:55
|
Update of /cvsroot/parchive2/library/src/tests/file
In directory sc8-pr-cvs1:/tmp/cvs-serv1971/src/tests/file
Modified Files:
test_file_module.cc
Log Message:
- Added == and != operator to File_Slice and Slice
- Fixed file module test case
- Got rid of dynamically allocated objects in testing where they aren't needed
- Changed all cerr's to cout's
- Changed "PASSED" to "PASS" in reed solomon test case
Index: test_file_module.cc
===================================================================
RCS file: /cvsroot/parchive2/library/src/tests/file/test_file_module.cc,v
retrieving revision 1.15
retrieving revision 1.16
diff -C2 -d -r1.15 -r1.16
*** test_file_module.cc 7 May 2003 01:22:19 -0000 1.15
--- test_file_module.cc 7 May 2003 01:39:22 -0000 1.16
***************
*** 94,97 ****
--- 94,101 ----
compare(test_file.Get_Fullpath(),"./test23.txt");
+ File test_file2("test_output");
+
+ compare(test_file2.Get_Fullpath(),"./test_output");
+
cout << "PASS: File::Get_Fullpath" << endl;
}
|