summary refs log tree commit diff stats
path: root/tests/misc/trunner.nim
diff options
context:
space:
mode:
authorTimothee Cour <timothee.cour2@gmail.com>2021-06-13 23:51:40 -0700
committerGitHub <noreply@github.com>2021-06-14 08:51:40 +0200
commite1e8af535ec195e5749dffa728add95770e5cbd7 (patch)
tree5ef4e35035e9b5647a47f252ebf78082dc71e5db /tests/misc/trunner.nim
parent065243dc5988fbfcbed8236e19a588b98d63b199 (diff)
downloadNim-e1e8af535ec195e5749dffa728add95770e5cbd7.tar.gz
merge BuildMode into SuccessX, remove code duplication w drnim, add useful info to successx, add gc to compilesettings (#18252)
* merge BuildMode into SuccessX, add more info

* refactor duplicated with drnim

* fixup

* address comment
Diffstat (limited to 'tests/misc/trunner.nim')
-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 b6b302836..f2ea1d040 100644
--- a/tests/misc/trunner.nim
+++ b/tests/misc/trunner.nim
@@ -23,7 +23,7 @@ proc isDots(a: string): bool =
   a.startsWith(".") and a.strip(chars = {'.'}) == ""
 
 const
-  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"
+  defaultHintsOff = "--hint:successx: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()