Преглед на файлове

Send terminal control code to `STDOUT` instead

`STDERR` might be redirected, and this code signals to the terminal to
show the cursor again. Otherwise, the cursor will be invisible.
Feoramund преди 1 година
родител
ревизия
dcfda195d2
променени са 1 файла, в които са добавени 1 реда и са изтрити 1 реда
  1. 1 1
      core/testing/runner.odin

+ 1 - 1
core/testing/runner.odin

@@ -667,7 +667,7 @@ runner :: proc(internal_tests: []Internal_Test) -> bool {
 		}
 	}
 
-	fmt.wprint(batch_writer, ansi.CSI + ansi.DECTCEM_SHOW)
+	fmt.wprint(stdout, ansi.CSI + ansi.DECTCEM_SHOW)
 
 	fmt.wprintln(stderr, bytes.buffer_to_string(&batch_buffer))