From 75cfa40ac27748643c5c79ce5ef8b7c190960cdc Mon Sep 17 00:00:00 2001 From: jeaye Date: Sun, 24 Nov 2024 20:43:12 -0800 Subject: [PATCH] Hook core-native into test suite --- compiler+runtime/test/cpp/main.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/compiler+runtime/test/cpp/main.cpp b/compiler+runtime/test/cpp/main.cpp index 9f2e636d..f2c06172 100644 --- a/compiler+runtime/test/cpp/main.cpp +++ b/compiler+runtime/test/cpp/main.cpp @@ -12,6 +12,7 @@ #include #include +#include /* NOLINTNEXTLINE(bugprone-exception-escape): println can throw. */ int main(int const argc, char const **argv) @@ -31,6 +32,7 @@ try context.setOption("no-breaks", true); jank::runtime::__rt_ctx = new(GC) jank::runtime::context{}; + jank_load_clojure_core_native(); jank::runtime::__rt_ctx->load_module("/clojure.core").expect_ok(); auto const res(context.run());