1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-14 18:42:56 +08:00

Handle window file access errors

This commit is contained in:
Dean Herbert 2021-10-01 10:40:55 +09:00
parent 74841cf1a9
commit b5345235ca

View File

@ -38,10 +38,26 @@ namespace osu.Game.Tests.Database
testAction(realmFactory, testStorage);
realmFactory.Dispose();
Logger.Log($"Final database size: {testStorage.GetStream(realmFactory.Filename)?.Length ?? 0}");
try
{
Logger.Log($"Final database size: {testStorage.GetStream(realmFactory.Filename)?.Length ?? 0}");
}
catch
{
// windows runs may error due to file still being open.
}
realmFactory.Compact();
Logger.Log($"Final database size after compact: {testStorage.GetStream(realmFactory.Filename)?.Length ?? 0}");
try
{
Logger.Log($"Final database size after compact: {testStorage.GetStream(realmFactory.Filename)?.Length ?? 0}");
}
catch
{
// windows runs may error due to file still being open.
}
}
});
}