Redis test port allocation fixed.

This commit is contained in:
antirez 2011-12-07 17:15:17 +01:00
parent 85b69afede
commit dfcf5a0ac8

View File

@ -153,9 +153,9 @@ proc cleanup {} {
proc find_available_port start {
for {set j $start} {$j < $start+1024} {incr j} {
if {[catch {
set fd [socket 127.0.0.1 $start]
set fd [socket 127.0.0.1 $j]
}]} {
return $start
return $j
} else {
close $fd
}