# The runtime's own tests. ../CMakeLists.txt has called add_subdirectory(tests) since the initial scaffold
# (6828a1a, 2026-04-28), and this file did not exist until 2026-09-16, so `cmake` failed at configure time
# and test_operators.c (49 checks) ran only by hand. tests/test_c_runtime_cmake_builds.py now configures,
# builds and runs ctest on every push.
add_executable(test_operators test_operators.c)
target_compile_options(test_operators PRIVATE -Wall -Werror=implicit-function-declaration)
target_link_libraries(test_operators PRIVATE monogate)
add_test(NAME test_operators COMMAND test_operators)
