let mut args : Vec<&str> = vec![];
args.extend(&["--config", CONFIG]);
args.extend(xargs.iter().map(AsRef::as_ref));
+ let dbg = format!("running {} {:?}", &exe, &args);
+ debug!("{}", &dbg);
(||{
let mut cmd = Command::new(&exe);
cmd.args(&args);
}
Ok::<_,AE>(())
})()
- .context(exe)
+ .context(dbg)
.context("run otter client")?;
}
}
prepare_gameserver(&cln, &ds).always_context("setup game server")?;
let instance_name =
- prepare_game(&ds, "TABLE").context("setup game")?;
+ prepare_game(&ds, TABLE).context("setup game")?;
let final_hook = FinalInfoCollection;
su.setup_static_users(&inst)?.try_into().unwrap();
debug!("ok {:?} {:?}", alice, bob);
-// alice.synch()?;
+ su.w(&alice)?.synch()?;
sleep(750 * MS);
debug!("finishing");