summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorIvan Maidanski <ivmai@mail.ru>2022-11-23 07:47:20 +0300
committerIvan Maidanski <ivmai@mail.ru>2022-11-23 07:47:20 +0300
commita049f37475303c458b684e9e4b5b9746210b163a (patch)
tree132bc791fb18696ccddf65bb89d7a8a2c45385cf /tests
parent9129db0501ba4a0724d60e49726b1ba68d88a0d6 (diff)
downloadbdwgc-a049f37475303c458b684e9e4b5b9746210b163a.tar.gz
Fix typo in comment related to Emscripten linker bug memalign/memset
(fix of commit 1431bda1a) * tests/tests.am [EMSCRIPTEN]: Fix a typo ("_memalign and _memset") in comment (i.e. mention also _memset instead of mentioning _memalign twice).
Diffstat (limited to 'tests')
-rw-r--r--tests/tests.am4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/tests.am b/tests/tests.am
index f6460d2b..4794348d 100644
--- a/tests/tests.am
+++ b/tests/tests.am
@@ -30,8 +30,8 @@ if EMSCRIPTEN
check_PROGRAMS += gctest.html
gctest_html_SOURCES = $(gctest_SOURCES)
gctest_html_LDADD = $(gctest_LDADD)
-# Bug in the linker not being able to determine that _memalign and
-# _memalign is needed? it's part of mmap.
+# Bug in the linker not being able to determine that _memalign and _memset
+# are needed? it's part of mmap.
gctest_html_LDFLAGS = -s "EXPORTED_FUNCTIONS=['_memalign', '_main', '_memset']"
endif