From 202b5d944fff0e821845f3cbe52681ba84cb1eaa Mon Sep 17 00:00:00 2001 From: scawful Date: Sun, 11 Aug 2024 16:19:02 -0400 Subject: [PATCH] Revert "add integration arg to yaze_test for test_engine window" This reverts commit 1c706b94430301f8285f6a497760538caaf12591. --- src/test/yaze_test.cc | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/src/test/yaze_test.cc b/src/test/yaze_test.cc index 2772a521..b972ad10 100644 --- a/src/test/yaze_test.cc +++ b/src/test/yaze_test.cc @@ -1,6 +1,4 @@ #define SDL_MAIN_HANDLED - -#include #include #include "absl/debugging/failure_signal_handler.h" @@ -11,16 +9,6 @@ int main(int argc, char* argv[]) { absl::FailureSignalHandlerOptions options; absl::InstallFailureSignalHandler(options); - - // Support the ability to launch an integration test window. - SDL_SetMainReady(); - - // Check if the argument says `integration` - if (argc > 1 && std::string(argv[1]) == "integration") { - // TODO: Create the debugging window with the test engine. - return EXIT_SUCCESS; - } - ::testing::InitGoogleTest(&argc, argv); return RUN_ALL_TESTS(); } \ No newline at end of file