18 lines
384 B
Python
18 lines
384 B
Python
# vim: ft=python
|
|
|
|
module("test_runner",
|
|
targets = [ "user" ],
|
|
deps = [ "libc", "util" ],
|
|
description = "Unit test runner",
|
|
sources = [
|
|
"main.cpp",
|
|
"test_case.cpp",
|
|
|
|
"tests/constexpr_hash.cpp",
|
|
"tests/handles.cpp",
|
|
"tests/linked_list.cpp",
|
|
"tests/mailbox.cpp",
|
|
"tests/map.cpp",
|
|
"tests/vector.cpp",
|
|
])
|