- 论坛徽章:
- 0
|
本帖最后由 qweiu 于 2013-04-20 10:08 编辑
首先说明一下,centos6.4是安装在vmware上的,32位的
redis make成功但make test就报错:
我现在怀疑是不是tcl8.5编译的有问题?
因为tcl8.5 make test时确实有报错:
Sourced 137 Test Files.
Files with failing tests: http.test httpold.test socket.test
==== http-3.11 http::geturl querychannel with -command FAILED
==== socket-2.10 close on accept, accepted socket lives FAILED
==== Contents of test case:
set done 0
set timer [after 20000 "set done timed_out"]
set ss [socket -server accept 0]
proc accept {s a p} {
global ss
close $ss
fileevent $s readable "readit $s"
fconfigure $s -trans lf
}
proc readit {s} {
global done
gets $s
close $s
set done 1
}
set cs [socket [info hostname] [lindex [fconfigure $ss -sockname] 2]]
puts $cs hello
close $cs
vwait done
after cancel $timer
set done
---- Test generated error; Return code was: 1
---- Return code should have been one of: 0 2
---- errorInfo: couldn't open socket: connection refused
while executing
"socket [info hostname] [lindex [fconfigure $ss -sockname] 2]"
("uplevel" body line 17)
invoked from within
"uplevel 1 $script"
---- errorCode: POSIX ECONNREFUSED {connection refused}
==== socket-2.10 FAILED
[root@wei soft]# cd redis-2.6.12
[root@wei redis-2.6.12]# make test
好像是测试 tests/integration/rdb.tcl文件时报错
具体如下:
[ok]: LREM deleting objects that may be int encoded - ziplist
[ok]: Regression for bug 593 - chaining BRPOPLPUSH with other blocking cmds
[ok]: AOF rewrite of zset with skiplist encoding, string data
[12/32 done]: unit/type/list (27 seconds)
Testing unit/introspection
[ok]: AOF rewrite of zset with ziplist encoding, int data
[exception]: Executing test client: assertion:Server started even if RDB was unreadable!.
assertion:Server started even if RDB was unreadable!
while executing
"error "assertion msg""
(procedure "fail" line 2)
invoked from within
"fail "Server started even if RDB was unreadable!""
("uplevel" body line 2)
invoked from within
"uplevel 1 $elsescript"
(procedure "wait_for_condition" line 7)
invoked from within
"wait_for_condition 50 100 {
[string match {*Fatal error loading*} [exec tail -n1 < [dict get $srv stdout]]]
} else {
fail "Server..."
("uplevel" body line 2)
invoked from within
"uplevel 1 $code"
(procedure "start_server_and_kill_it" line 5)
invoked from within
"start_server_and_kill_it [list "dir" $server_path] {
wait_for_condition 50 100 {
[string match {*Fatal error loading*} \
[exec..."
(file "tests/integration/rdb.tcl" line 57)
invoked from within
"source $path"
(procedure "execute_tests" line 4)
invoked from within
"execute_tests $data"
(procedure "test_client_main" line 9)
invoked from within
"test_client_main $::test_server_port "
make[1]: *** [test] 错误 1
make[1]: Leaving directory `/root/soft/redis-2.6.12/src'
make: *** [test] 错误 2 |
|