Files
jsix_import/src/user/test_runner/test_runner.module
Justin C. Miller 69a3b6dad7 [test_runner] Add handle test suite
For now this just tests handle cloning and basic capability checking.
2022-02-22 00:11:38 -08:00

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",
])