aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFeoramund <161657516+Feoramund@users.noreply.github.com>2024-05-29 16:39:44 -0400
committerFeoramund <161657516+Feoramund@users.noreply.github.com>2024-06-02 14:47:07 -0400
commite1a3c0e21d2683804cdfc7644e55ee6ba7a9f0ea (patch)
tree62850252adab3b84d32b2441f4f5c3fb74209fb2
parentbf42e39b1ce77da0bc45f64ff35322e618a59b9c (diff)
Track memory in the test runner by default
-rw-r--r--core/testing/runner.odin2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/testing/runner.odin b/core/testing/runner.odin
index c79d5537b..6a9bd6d8f 100644
--- a/core/testing/runner.odin
+++ b/core/testing/runner.odin
@@ -25,7 +25,7 @@ _ :: strings
// Specify how many threads to use when running tests.
TEST_THREADS : int : #config(ODIN_TEST_THREADS, 0)
// Track the memory used by each test.
-TRACKING_MEMORY : bool : #config(ODIN_TEST_TRACK_MEMORY, false)
+TRACKING_MEMORY : bool : #config(ODIN_TEST_TRACK_MEMORY, true)
// Specify how much memory each thread allocator starts with.
PER_THREAD_MEMORY : int : #config(ODIN_TEST_THREAD_MEMORY, mem.ROLLBACK_STACK_DEFAULT_BLOCK_SIZE)
// Select a specific set of tests to run by name.