summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorTimothee Cour <timothee.cour2@gmail.com>2021-05-04 00:50:06 -0700
committerGitHub <noreply@github.com>2021-05-04 00:50:06 -0700
commit938c6ac5df67103bb677592261c7750d39abcfd7 (patch)
tree45626d2e7ed48a8e91119e80dfd191ffa26bd698
parentd67ae4afa688f02059b83e59a7f19a8a8030272b (diff)
downloadNim-938c6ac5df67103bb677592261c7750d39abcfd7.tar.gz
add logging to help investigate why tests/vm/tconst.nim is flaky (#17934)
-rw-r--r--tests/vm/tconst.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/vm/tconst.nim b/tests/vm/tconst.nim
index 3ebbec043..553f0c136 100644
--- a/tests/vm/tconst.nim
+++ b/tests/vm/tconst.nim
@@ -28,7 +28,7 @@ template main() =
     Compiled at: $2, $3
     """ % [NimVersion & spaces(44-len(NimVersion)), CompileDate, CompileTime]
     let b = $a
-    doAssert CompileTime in b
+    doAssert CompileTime in b, $(b, CompileTime)
     doAssert NimVersion in b
 
 static: main()