我已经成功地在CentOS 6.9 VM上分叉并构建了Context Broker源代码,现在我正在尝试运行official documentation建议的功能测试。首先,我安装了accumulator-server.py
脚本:
$ make install_scripts INSTALL_DIR=~
已确认已安装:
$ accumulator-server.py -u
Usage: accumulator-server.py --host <host> --port <port> --url <server url> --pretty-print -v -u
Parameters:
--host <host>: host to use database to use (default is '0.0.0.0')
--port <port>: port to use (default is 1028)
--url <server url>: server URL to use (default is /accumulate)
--pretty-print: pretty print mode
--https: start in https
--key: key file (only used if https is enabled)
--cert: cert file (only used if https is enabled)
-v: verbose mode
-u: print this usage message
然后运行功能测试:
$ make functional_test INSTALL_DIR=~
但测试失败并退出并显示以下消息:
024/927: 0000_ipv6_support/ipv4_ipv6_both.test ........................................................................ (FAIL 11 - SHELL-INIT exited with code 1) testHarness.sh/IPv6 IPv4 Both : (0000_ipv6_support/ipv4_ipv6_both.test)
make: *** [functional_test] Error 11
$
我检查了文件../0000_ipv6_support/ipv4_ipv6_both.shellInit.stdout
是否有任何关于可能出错的提示,但错误日志并没有引导我到任何地方:
{ "dropped" : "ftest", "ok" : 1 }
accumulator running as PID 6404
Unable to start listening application after waiting 30
有没有人知道这里可能出现的问题?