projects
/
onyx.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6dedd78
)
fixed: broken test case that uses method info
author
Brendan Hansen
<brendan.f.hansen@gmail.com>
Thu, 11 Jan 2024 16:15:52 +0000
(10:15 -0600)
committer
Brendan Hansen
<brendan.f.hansen@gmail.com>
Thu, 11 Jan 2024 16:15:52 +0000
(10:15 -0600)
scripts/run_tests.onyx
patch
|
blob
|
history
diff --git
a/scripts/run_tests.onyx
b/scripts/run_tests.onyx
index 87b870ba98f7ad0051b651d1aaa1a21899ed4046..64bd5a51352dc573468284ae41d6d16261352a95 100644
(file)
--- 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);