From: Brendan Hansen Date: Thu, 11 Jan 2024 16:15:52 +0000 (-0600) Subject: fixed: broken test case that uses method info X-Git-Url: https://git.brendanfh.com/?a=commitdiff_plain;h=682d5f2843558a7d96d33ba0323479b4a4c6295e;p=onyx.git fixed: broken test case that uses method info --- diff --git a/scripts/run_tests.onyx b/scripts/run_tests.onyx index 87b870ba..64bd5a51 100644 --- a/scripts/run_tests.onyx +++ b/scripts/run_tests.onyx @@ -127,7 +127,7 @@ main :: (args) => { args = .["build", it.source_file]; } else { printf("[{}] Running test {}...\n", context.thread_id, it.source_file); - args = .["run", it.source_file]; + args = .["run", it.source_file, "--generate-method-info"]; } proc := os.process_spawn(thread_data.onyx_cmd, args);