diff --git a/src/app/color_unittest.cpp b/src/app/color_unittest.cpp index eb2dd59d2..f0f16fa65 100644 --- a/src/app/color_unittest.cpp +++ b/src/app/color_unittest.cpp @@ -16,7 +16,8 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include +#include "tests/test.h" + #include "app/color.h" inline std::ostream& operator<<(std::ostream& os, const Color& color) { @@ -50,9 +51,3 @@ TEST(Color, toString) EXPECT_EQ("rgb{32,16,255}", Color::fromRgb(32, 16, 255).toString()); EXPECT_EQ("hsv{32,64,99}", Color::fromHsv(32, 64, 99).toString()); } - -int main(int argc, char** argv) -{ - ::testing::InitGoogleTest(&argc, argv); - return RUN_ALL_TESTS(); -} diff --git a/src/file/file_unittest.cpp b/src/file/file_unittest.cpp index f5cdc0a3f..4f9299060 100644 --- a/src/file/file_unittest.cpp +++ b/src/file/file_unittest.cpp @@ -16,9 +16,7 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include - -#include "config.h" +#include "tests/test.h" #include "app.h" #include "document.h" diff --git a/src/main.cpp b/src/main.cpp index dacd57b8a..bc012a5bd 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -71,8 +71,8 @@ static bool get_memory_dump_filename(std::string& filename) #endif } -// ASEPRITE entry point -int main(int argc, char* argv[]) +// ASEPRITE entry point. (Called from she library.) +int app_main(int argc, char* argv[]) { // Initialize the random seed. std::srand(static_cast(std::time(NULL))); diff --git a/src/she/she_alleg4.cpp b/src/she/she_alleg4.cpp index de0e1104e..787eb2c26 100644 --- a/src/she/she_alleg4.cpp +++ b/src/she/she_alleg4.cpp @@ -310,12 +310,11 @@ System* Instance() } -#ifdef main +// It must be defined by the user program code. +extern int app_main(int argc, char* argv[]); + int main(int argc, char* argv[]) { -#undef main - extern int main(int argc, char* argv[]); - return main(argc, argv); + return app_main(argc, argv); } END_OF_MAIN(); -#endif diff --git a/src/tests/test.h b/src/tests/test.h index f63bc0459..e50c0b34c 100644 --- a/src/tests/test.h +++ b/src/tests/test.h @@ -28,11 +28,7 @@ #include "ui/gui.h" #endif -#ifdef main - #undef main -#endif - -int main(int argc, char* argv[]) +int app_main(int argc, char* argv[]) { int exitcode; ::testing::InitGoogleTest(&argc, argv);