Refactor test configuration: remove unused message_test.cc from yaze_test and fix preprocessor directive in rom_test.cc

This commit is contained in:
scawful
2024-11-09 20:13:23 -05:00
parent ef2ddaa74e
commit 4a9df65ef5
2 changed files with 1 additions and 2 deletions

View File

@@ -4,7 +4,6 @@ add_executable(
yaze_test yaze_test
test/yaze_test.cc test/yaze_test.cc
test/rom_test.cc test/rom_test.cc
test/core/message_test.cc
test/gfx/compression_test.cc test/gfx/compression_test.cc
test/gfx/snes_palette_test.cc test/gfx/snes_palette_test.cc
test/integration/test_editor.cc test/integration/test_editor.cc

View File

@@ -45,7 +45,7 @@ TEST_F(RomTest, Uninitialized) {
} }
TEST_F(RomTest, LoadFromFile) { TEST_F(RomTest, LoadFromFile) {
#if __defined(__linux__) #if defined(__linux__)
GTEST_SKIP(); GTEST_SKIP();
#endif #endif
EXPECT_OK(rom_.LoadFromFile("test.sfc")); EXPECT_OK(rom_.LoadFromFile("test.sfc"));