From 516e4d63ce373949588a416278129fa285403d4f Mon Sep 17 00:00:00 2001 From: "arseny.kapoulkine" Date: Tue, 20 Apr 2010 20:46:42 +0000 Subject: unicode: Fixed tests for Linux git-svn-id: http://pugixml.googlecode.com/svn/trunk@280 99668b35-9821-0410-8761-19e4c4f06640 --- tests/main.cpp | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'tests/main.cpp') diff --git a/tests/main.cpp b/tests/main.cpp index eb47401..f283dcf 100644 --- a/tests/main.cpp +++ b/tests/main.cpp @@ -12,6 +12,13 @@ jmp_buf test_runner::_failure; static size_t g_memory_total_size = 0; +#ifdef __linux +size_t _msize(void* ptr) +{ + return malloc_usable_size(ptr); +} +#endif + static void* custom_allocate(size_t size) { if (test_runner::_memory_fail_threshold > 0 && test_runner::_memory_fail_threshold < size) -- cgit v1.2.3