1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2025-12-10 09:32:29 +01:00

Remove all replay tests from 32bit builds

This commit is contained in:
duncanspumpkin
2020-04-12 11:18:23 +01:00
parent 9c5a4b8561
commit bc04fb29c2

View File

@@ -71,6 +71,10 @@ protected:
TEST_P(ReplayTests, RunReplay)
{
#ifdef PLATFORM_32BIT
log_warning("Replay Tests have not been performed. OpenRCT2/OpenRCT2#11279.");
return;
#else
gOpenRCT2Headless = true;
gOpenRCT2NoGraphics = true;
core_init();
@@ -96,6 +100,7 @@ TEST_P(ReplayTests, RunReplay)
gs->UpdateLogic();
ASSERT_TRUE(replayManager->IsPlaybackStateMismatching() == false);
}
#endif
}
static void PrintTo(const ReplayTestData& testData, std::ostream* os)