mirror of
https://github.com/roytam1/basilisk55.git
synced 2026-07-20 22:29:28 +00:00
37 lines
1.5 KiB
Makefile
37 lines
1.5 KiB
Makefile
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
include $(topsrcdir)/mozglue/build/replace_malloc.mk
|
|
|
|
ifndef CROSS_COMPILE
|
|
|
|
ifeq ($(OS_TARGET),WINNT)
|
|
LOGALLOC = MOZ_REPLACE_MALLOC_LIB=$(CURDIR)/../logalloc.dll
|
|
else
|
|
ifeq ($(OS_TARGET),Darwin)
|
|
LOGALLOC = DYLD_INSERT_LIBRARIES=$(CURDIR)/../liblogalloc.dylib
|
|
else
|
|
LOGALLOC = LD_PRELOAD=$(CURDIR)/../$(DLL_PREFIX)logalloc$(DLL_SUFFIX)
|
|
endif
|
|
endif
|
|
|
|
expected_output.log: $(srcdir)/replay.log
|
|
# The logalloc-replay program will only replay entries from the first pid,
|
|
# so the expected output only contains entries beginning with "1 "
|
|
grep "^1 " $< > $@
|
|
|
|
check:: $(srcdir)/replay.log expected_output.log
|
|
# Test with MALLOC_LOG as a file descriptor number
|
|
# We filter out anything happening before the first jemalloc_stats (first
|
|
# command in replay.log) because starting with libstdc++ 5, a static
|
|
# initializer in the STL allocates memory, which we obviously don't have
|
|
# in expected_output.log.
|
|
MALLOC_LOG=1 $(LOGALLOC) ./$(PROGRAM) < $< | sed -n '/jemalloc_stats/,$$p' | $(PYTHON) $(srcdir)/logalloc_munge.py | diff -w - expected_output.log
|
|
# Test with MALLOC_LOG as a file name
|
|
$(RM) test_output.log
|
|
MALLOC_LOG=test_output.log $(LOGALLOC) ./$(PROGRAM) < $<
|
|
sed -n '/jemalloc_stats/,$$p' test_output.log | $(PYTHON) $(srcdir)/logalloc_munge.py | diff -w - expected_output.log
|
|
|
|
endif
|