Update of /cvsroot/mockpp/mockpp/mockpp/tests
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22078/mockpp/tests
Modified Files:
Formatter_test.cpp
Log Message:
fix for 64bit platforms
Index: Formatter_test.cpp
===================================================================
RCS file: /cvsroot/mockpp/mockpp/mockpp/tests/Formatter_test.cpp,v
retrieving revision 1.41
retrieving revision 1.42
diff -u -d -r1.41 -r1.42
--- Formatter_test.cpp 6 Mar 2006 19:21:34 -0000 1.41
+++ Formatter_test.cpp 6 Mar 2006 19:29:19 -0000 1.42
@@ -29,7 +29,7 @@
#include <mockpp/mockpp.h> // always first
#include <cstdio>
-#include <iostream>
+//#include <iostream>
#include "SelectFramework.h"
@@ -323,7 +323,7 @@
mockpp::String str = mockpp::number((unsigned long)123, 16);
str = mockpp::number(ull, 16);
- std::cout << mockpp::getLatin1(str).c_str() << std::endl;
+// std::cout << mockpp::getLatin1(str).c_str() << std::endl;
MOCKPP_ASSERT_EQUALS(MOCKPP_PCSTRING("-8000000000000000"), str); // differs from sprintf(..)
}
|