From 8e5356441b6449bca26eb4b9c02b1b27cc723111 Mon Sep 17 00:00:00 2001 From: Charles Blake Date: Tue, 27 Apr 2021 09:41:31 -0400 Subject: [PATCH] Add "--hint:buildmode:off" to `defaultHintsOff`. --- tests/misc/trunner.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/misc/trunner.nim b/tests/misc/trunner.nim index 2a82ca9ee6..06c828eaa0 100644 --- a/tests/misc/trunner.nim +++ b/tests/misc/trunner.nim @@ -21,7 +21,7 @@ proc isDots(a: string): bool = a.startsWith(".") and a.strip(chars = {'.'}) == "" const - defaultHintsOff = "--hint:successx:off --hint:exec:off --hint:link:off --hint:cc:off --hint:conf:off --hint:processing:off --hint:QuitCalled:off" + defaultHintsOff = "--hint:successx:off --hint:buildmode:off --hint:exec:off --hint:link:off --hint:cc:off --hint:conf:off --hint:processing:off --hint:QuitCalled:off" # useful when you want to turn only some hints on, and some common ones off. # pending https://github.com/timotheecour/Nim/issues/453, simplify to: `--hints:off` nim = getCurrentCompilerExe()