Re: [Cppcms-users] make test: 72% tests passed, 13 tests failed out of 46
Brought to you by:
artyom-beilis
|
From: Artyom <art...@ya...> - 2010-07-13 04:35:52
|
Hello,
First of all very good problem report.
> The following tests FAILED:
> 8 - form_test (Failed)
> 9 - cookie_test
> (Failed)
> 10 -
> internal_forwarder_test (Failed)
> 11 - forwarder_test
> (Failed)
> 12 - jsonrpc_test
> (Failed)
> 13 -
> proto_test_async_http (Failed)
> 14 -
> proto_test_async_scgi (Failed)
> 16 -
> proto_test_sync_http (Failed)
> 17 -
> proto_test_sync_scgi (Failed)
> 34 - test_aio_socket
> (Failed)
> 35 -
> test_aio_endpoint (Failed)
> 36 -
> test_aio_prefork (Failed)
> 42 -
These tests had failed because you had an application that
runs and listens to 8080 port, Unit tests use it for communication
with the application - so it can't bind to the port.
Stop a service or application that listen on them and they should pass.
> test_locale_formatting (Failed)
>
> I don't know how to find the ICU version I have. I guess a
> recent one (I'm on
> Kubuntu 9.11.
>
Take a look on file /usr/include/unicode/uversion.h
and see how U_ICU_VERSION is defined.
It looks like you have 4.0 and I handn't chance to test CppCMS
against this version (tested 3.6, 3.8, 4.2 and 4.4)
The faults are minor and not critical but can you please change lines
297, 165 in booster/lib/locale/test/test_formatting.cpp file from
#if U_ICU_VERSION_MAJOR_NUM >= 4
to
#if U_ICU_VERSION_MAJOR_NUM*100 + U_ICU_VERSION_MINOR_NUM >= 402
And tell me if it helps?
Regards,
Artyom
P.S.: Have you registered to the list? Because your message was blocked
for some reason and I had to unblock it in administrators interface.
|