diff options
| author | Feoramund <161657516+Feoramund@users.noreply.github.com> | 2024-06-01 07:12:51 -0400 |
|---|---|---|
| committer | Feoramund <161657516+Feoramund@users.noreply.github.com> | 2024-06-02 14:54:32 -0400 |
| commit | 45fa9d81487e89b88e4b5cd22803be45ea341f85 (patch) | |
| tree | 45db72db0468bf50ad2c1fe9a54b8dcc28766b9c | |
| parent | cb8faf5b74cd0863e226908d2bebd4829b71cbc8 (diff) | |
Expand documentation comment for `ODIN_TEST_NAMES`
| -rw-r--r-- | core/testing/runner.odin | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/core/testing/runner.odin b/core/testing/runner.odin index 64c1ad760..9027750da 100644 --- a/core/testing/runner.odin +++ b/core/testing/runner.odin @@ -26,6 +26,9 @@ ALWAYS_REPORT_MEMORY : bool : #config(ODIN_TEST_ALWAYS_REPORT_MEMORY, false) // 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. +// Each test is separated by a comma and may optionally include the package name. +// This may be useful when running tests on multiple packages with `-all-packages`. +// The format is: `package.test_name,test_name_only,...` TEST_NAMES : string : #config(ODIN_TEST_NAMES, "") // Show the fancy animated progress report. FANCY_OUTPUT : bool : #config(ODIN_TEST_FANCY, true) |