
Changing behaviour so that instead of rebinding after a successful migration and continuing as an ordinary server, we simply quit with a 0 exit code and let our caller restart us as a server if they want to. This means that everything in listen.c, listen.h, and anything making reference to a rebind address is unneeded.
19 lines
376 B
Ruby
Executable File
19 lines
376 B
Ruby
Executable File
#!/usr/bin/env ruby
|
|
|
|
# Successfully send a migration. This test just makes sure that the
|
|
# happy path is covered. We expect the destination to quit with a
|
|
# success status.
|
|
|
|
require 'flexnbd/fake_source'
|
|
include FlexNBD
|
|
|
|
addr, port, srv_pid, newaddr, newport = *ARGV
|
|
|
|
client = FakeSource.new( addr, port, "Timed out connecting" )
|
|
client.send_mirror()
|
|
|
|
sleep(1)
|
|
|
|
|
|
exit( 0 )
|