skip overworld test on linux for automated builds, requires rom file
This commit is contained in:
@@ -10,9 +10,14 @@ namespace yaze {
|
||||
namespace test {
|
||||
namespace zelda3 {
|
||||
|
||||
class OverworldTest : public ::testing::Test {
|
||||
class OverworldTest : public ::testing::Test, public app::SharedRom {
|
||||
protected:
|
||||
void SetUp() override {}
|
||||
void SetUp() override {
|
||||
// Skip tests on Linux for automated github builds
|
||||
#if defined(__linux__)
|
||||
GTEST_SKIP();
|
||||
#endif
|
||||
}
|
||||
void TearDown() override {}
|
||||
|
||||
app::zelda3::overworld::Overworld overworld_;
|
||||
|
||||
Reference in New Issue
Block a user