summary refs log tree commit diff stats
path: root/tests/misc
diff options
context:
space:
mode:
authorc-blake <c-blake@users.noreply.github.com>2021-04-29 02:55:43 -0400
committerGitHub <noreply@github.com>2021-04-29 08:55:43 +0200
commit601c050fcb4cc3101265018eb1cc381c6cb9dab9 (patch)
treeb5b1c13bf19069801d606f15bdea56ab5d191385 /tests/misc
parent7637cff9cf677ad7e5952aed7670fe408eded418 (diff)
downloadNim-601c050fcb4cc3101265018eb1cc381c6cb9dab9.tar.gz
Implement https://forum.nim-lang.org/t/7848#50018 (#17874)
* Implement https://forum.nim-lang.org/t/7848#50018 with just the same
`SuccessX` hint category, build mode on a separate, final line, and
no change to how the mode is spelled for -d:release/-d:danger.

* Change to add a new BuildMode hint category and keep testament in sync
as per comment.

* Add "--hint:buildmode:off" to `defaultHintsOff`.

* Remove as requested.

* As requested for tests clean up.

* Address code review.

* Address code review.

* Mirror db456423116a9b19666f551f4d38aded3964c2e2
Diffstat (limited to 'tests/misc')
-rw-r--r--tests/misc/trunner.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/misc/trunner.nim b/tests/misc/trunner.nim
index 2a82ca9ee..06c828eaa 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()