skip overworld test on linux for automated builds, requires rom file

This commit is contained in:
scawful
2024-08-29 22:20:30 -04:00
parent c8bf6fac07
commit 43972ef667

View File

@@ -10,9 +10,14 @@ namespace yaze {
namespace test { namespace test {
namespace zelda3 { namespace zelda3 {
class OverworldTest : public ::testing::Test { class OverworldTest : public ::testing::Test, public app::SharedRom {
protected: protected:
void SetUp() override {} void SetUp() override {
// Skip tests on Linux for automated github builds
#if defined(__linux__)
GTEST_SKIP();
#endif
}
void TearDown() override {} void TearDown() override {}
app::zelda3::overworld::Overworld overworld_; app::zelda3::overworld::Overworld overworld_;