summaryrefslogtreecommitdiffstats
path: root/meson.build
diff options
context:
space:
mode:
authorClement Sibille <clements+git@lisible.xyz>2024-05-20 01:02:14 +0900
committerClement Sibille <clements+git@lisible.xyz>2024-05-20 01:28:21 +0900
commitd73919a0c717d4f4b6b7c50789f20432ec936361 (patch)
tree42e8a55f8fbfe63fe620941c5143f9fd6d422b73 /meson.build
parent62eb3b371fffe75e0da5393cb558a472a177f4ce (diff)
Add missing tests for memory module
Diffstat (limited to 'meson.build')
-rw-r--r--meson.build2
1 files changed, 2 insertions, 0 deletions
diff --git a/meson.build b/meson.build
index b640bf1..1918463 100644
--- a/meson.build
+++ b/meson.build
@@ -14,3 +14,5 @@ test_string = executable('test_string', 'tests/test_runner.c', 'tests/string.c',
test('test_string', test_string)
test_bytes = executable('test_bytes', 'tests/test_runner.c', 'tests/bytes.c', dependencies: [lisiblestd_dep])
test('test_bytes', test_bytes)
+test_memory = executable('test_memory', 'tests/test_runner.c', 'tests/memory.c', dependencies: [lisiblestd_dep])
+test('test_memory', test_memory)
Go back to lisible.xyz