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 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_;
|
||||||
|
|||||||
Reference in New Issue
Block a user