summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/app/app.cpp3
-rw-r--r--test/unit/CMakeLists.txt2
2 files changed, 4 insertions, 1 deletions
diff --git a/src/app/app.cpp b/src/app/app.cpp
index 616caf9..190f667 100644
--- a/src/app/app.cpp
+++ b/src/app/app.cpp
@@ -170,6 +170,9 @@ CApplication::~CApplication()
delete m_private;
m_private = nullptr;
+ delete m_objMan;
+ m_objMan = nullptr;
+
delete m_eventQueue;
m_eventQueue = nullptr;
diff --git a/test/unit/CMakeLists.txt b/test/unit/CMakeLists.txt
index 5f9a588..df92b9c 100644
--- a/test/unit/CMakeLists.txt
+++ b/test/unit/CMakeLists.txt
@@ -228,7 +228,7 @@ ${LIBSNDFILE_LIBRARY}
add_executable(colobot_ut ${COLOBOT_SOURCES} ${UT_SOURCES} ${OPENAL_SOURCES})
target_link_libraries(colobot_ut ${LIBS})
-#add_test(colobot_ut ./colobot_ut)
+add_test(colobot_ut ./colobot_ut)
# TODO: change the unit cases to independent automated tests to be included in colobot_ut
add_subdirectory(common)