diff options
| author | Feoramund <161657516+Feoramund@users.noreply.github.com> | 2024-08-11 23:01:28 -0400 |
|---|---|---|
| committer | Feoramund <161657516+Feoramund@users.noreply.github.com> | 2024-08-11 23:01:28 -0400 |
| commit | f42a22369e52c2ef8228269bf2340efbb6167e23 (patch) | |
| tree | db5b65df7c41dcade905eaa323178b058e57f74a /core/testing/runner.odin | |
| parent | 675add4d90ec808d98f2874a8ea979f6ac652e5e (diff) | |
Fix wrong define name in test runner log messages
Diffstat (limited to 'core/testing/runner.odin')
| -rw-r--r-- | core/testing/runner.odin | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/testing/runner.odin b/core/testing/runner.odin index 467b5a666..abe1d5984 100644 --- a/core/testing/runner.odin +++ b/core/testing/runner.odin @@ -505,10 +505,10 @@ runner :: proc(internal_tests: []Internal_Test) -> bool { pkg_log.info("< Final Mem/ Total Mem> < Peak Mem> (#Free/Alloc) :: [package.test_name]") } else { when ALWAYS_REPORT_MEMORY { - pkg_log.warn("ODIN_TEST_ALWAYS_REPORT_MEMORY is true, but ODIN_TRACK_MEMORY is false.") + pkg_log.warn("ODIN_TEST_ALWAYS_REPORT_MEMORY is true, but ODIN_TEST_TRACK_MEMORY is false.") } when FAIL_ON_BAD_MEMORY { - pkg_log.warn("ODIN_TEST_FAIL_ON_BAD_MEMORY is true, but ODIN_TRACK_MEMORY is false.") + pkg_log.warn("ODIN_TEST_FAIL_ON_BAD_MEMORY is true, but ODIN_TEST_TRACK_MEMORY is false.") } } |