Files
qfixdpl/quickfix/_test/atfixturerun.rb
2026-03-09 15:35:32 -03:00

10 lines
172 B
Ruby

$kidpid = fork;
if($kidpid == 0) {
chdir("..");
exec("debug/quickfix -t server -f cfg/at_server_test.cfg");
}
sleep(6000);
`bash -c "./runall"`;
kill($kidpid);