Re: [Cppcms-users] error checkout, make, and make test cppcms framework
Brought to you by:
artyom-beilis
From: Artyom <art...@ya...> - 2010-12-13 14:29:18
|
Ok I see thanks. Can you please do following: In file booster/lib/locale/test/test_std_formatting.cpp add between lines 339 and 340 ss << boost::locale::as::number << 12345.45; TEST(ss.str() == "12 345,45"); The command: std::cerr << "[" << ss.str() << "]" << std::endl. So it would look like ss << boost::locale::as::number << 12345.45; std::cerr << "[" << ss.str() << "]" << std::endl. TEST(ss.str() == "12 345,45"); In build directory run make and then: ./test_std_formatting >report.txt And send me this file (report.txt)? Thanks. It is important to have entire file and not copy-paste from screen as I need to check if it generates invalid UTF-8 encoding or not. Artyom |