mirror of
https://github.com/nim-lang/Nim.git
synced 2026-02-12 06:18:51 +00:00
* refs #17946; refactor testament test summary, show test duration for failures; increase timeout tchannels * revert workarounds from https://github.com/nim-lang/Nim/pull/16698 and add allowPrefixMatch optional param to greedyOrderedSubsetLines * add test * workaround for yet another testament bug
15 lines
211 B
Nim
15 lines
211 B
Nim
discard """
|
|
nimout: '''
|
|
msg1
|
|
msg2
|
|
'''
|
|
action: compile
|
|
nimoutFull: true
|
|
"""
|
|
|
|
# should fail because `msg3` is not in nimout and `nimoutFill: true` was given
|
|
static:
|
|
echo "msg1"
|
|
echo "msg2"
|
|
echo "msg3"
|