diff options
author | Timothee Cour <timothee.cour2@gmail.com> | 2021-05-04 00:50:06 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-04 00:50:06 -0700 |
commit | 938c6ac5df67103bb677592261c7750d39abcfd7 (patch) | |
tree | 45626d2e7ed48a8e91119e80dfd191ffa26bd698 | |
parent | d67ae4afa688f02059b83e59a7f19a8a8030272b (diff) | |
download | Nim-938c6ac5df67103bb677592261c7750d39abcfd7.tar.gz |
add logging to help investigate why tests/vm/tconst.nim is flaky (#17934)
-rw-r--r-- | tests/vm/tconst.nim | 2 |
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() |