From ea1c6a8d1137b86cd02dbd3e5791a9e3f78cb7e7 Mon Sep 17 00:00:00 2001 From: vladislavbelov Date: Fri, 16 Jun 2023 16:44:21 +0000 Subject: [PATCH] Removes wdbg_heap from tests following 7782aa95f1. This was SVN commit r27714. --- source/test_setup.cpp | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/source/test_setup.cpp b/source/test_setup.cpp index d94b46e517..71fd465d6e 100644 --- a/source/test_setup.cpp +++ b/source/test_setup.cpp @@ -1,4 +1,4 @@ -/* Copyright (C) 2021 Wildfire Games. +/* Copyright (C) 2023 Wildfire Games. * This file is part of 0 A.D. * * 0 A.D. is free software: you can redistribute it and/or modify @@ -29,10 +29,6 @@ #include "lib/self_test.h" #include -#if OS_WIN -#include "lib/sysdep/os/win/wdbg_heap.h" -#endif - #include "lib/timer.h" #include "lib/sysdep/sysdep.h" #include "ps/Profiler2.h" @@ -46,12 +42,6 @@ class LeakReporter : public CxxTest::GlobalFixture { virtual bool tearDownWorld() { - // Enable leak reporting on exit. - // (This is done in tearDownWorld so that it doesn't report 'leaks' - // if the program is aborted before finishing cleanly.) -#if OS_WIN - wdbg_heap_Enable(true); -#endif return true; }