diff options
| author | Jeroen van Rijn <Kelimion@users.noreply.github.com> | 2025-10-31 17:39:29 +0100 |
|---|---|---|
| committer | Jeroen van Rijn <Kelimion@users.noreply.github.com> | 2025-10-31 17:39:29 +0100 |
| commit | f0051365929886befc20cbee442496ec3eeeb5ed (patch) | |
| tree | d7e7f1427494ca2fca0291f338aba7ad0e11622f | |
| parent | fc5ef57a974e0adb78f350c911cfe16d0201d82d (diff) | |
Also disable OSC codes to update title when `ODIN_TEST_FANCY=false`
| -rw-r--r-- | core/testing/runner.odin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/testing/runner.odin b/core/testing/runner.odin index b53bd8722..d79b0fd7e 100644 --- a/core/testing/runner.odin +++ b/core/testing/runner.odin @@ -803,7 +803,7 @@ runner :: proc(internal_tests: []Internal_Test) -> bool { } } else { if total_done_count != last_done_count { - if !global_ansi_disabled { + if !(global_ansi_disabled || !FANCY_OUTPUT) { fmt.wprintf(stdout, OSC_WINDOW_TITLE, total_done_count, total_test_count) } last_done_count = total_done_count |