mirror of
https://github.com/ppy/osu.git
synced 2024-12-14 07:33:20 +08:00
Fix multiple tests eating host exceptions
This commit is contained in:
parent
f547afe617
commit
8bcb4d13fb
@ -17,7 +17,8 @@ namespace osu.Game.Tests
|
|||||||
protected virtual TestOsuGameBase LoadOsuIntoHost(GameHost host, bool withBeatmap = false)
|
protected virtual TestOsuGameBase LoadOsuIntoHost(GameHost host, bool withBeatmap = false)
|
||||||
{
|
{
|
||||||
var osu = new TestOsuGameBase(withBeatmap);
|
var osu = new TestOsuGameBase(withBeatmap);
|
||||||
Task.Run(() => host.Run(osu));
|
Task.Run(() => host.Run(osu))
|
||||||
|
.ContinueWith(t => Assert.Fail($"Host threw exception {t.Exception}"), TaskContinuationOptions.OnlyOnFaulted);
|
||||||
|
|
||||||
waitForOrAssert(() => osu.IsLoaded, @"osu! failed to start in a reasonable amount of time");
|
waitForOrAssert(() => osu.IsLoaded, @"osu! failed to start in a reasonable amount of time");
|
||||||
|
|
||||||
|
@ -149,7 +149,8 @@ namespace osu.Game.Tournament.Tests.NonVisual
|
|||||||
private TournamentGameBase loadOsu(GameHost host)
|
private TournamentGameBase loadOsu(GameHost host)
|
||||||
{
|
{
|
||||||
var osu = new TournamentGameBase();
|
var osu = new TournamentGameBase();
|
||||||
Task.Run(() => host.Run(osu));
|
Task.Run(() => host.Run(osu))
|
||||||
|
.ContinueWith(t => Assert.Fail($"Host threw exception {t.Exception}"), TaskContinuationOptions.OnlyOnFaulted);
|
||||||
waitForOrAssert(() => osu.IsLoaded, @"osu! failed to start in a reasonable amount of time");
|
waitForOrAssert(() => osu.IsLoaded, @"osu! failed to start in a reasonable amount of time");
|
||||||
return osu;
|
return osu;
|
||||||
}
|
}
|
||||||
|
@ -55,7 +55,8 @@ namespace osu.Game.Tournament.Tests.NonVisual
|
|||||||
private TournamentGameBase loadOsu(GameHost host)
|
private TournamentGameBase loadOsu(GameHost host)
|
||||||
{
|
{
|
||||||
var osu = new TournamentGameBase();
|
var osu = new TournamentGameBase();
|
||||||
Task.Run(() => host.Run(osu));
|
Task.Run(() => host.Run(osu))
|
||||||
|
.ContinueWith(t => Assert.Fail($"Host threw exception {t.Exception}"), TaskContinuationOptions.OnlyOnFaulted);
|
||||||
waitForOrAssert(() => osu.IsLoaded, @"osu! failed to start in a reasonable amount of time");
|
waitForOrAssert(() => osu.IsLoaded, @"osu! failed to start in a reasonable amount of time");
|
||||||
return osu;
|
return osu;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user