megatest: make it green on Linux

This commit is contained in:
Araq
2018-12-10 15:50:38 +01:00
parent 916955dc95
commit 34815a4697
6 changed files with 9 additions and 9 deletions

View File

@@ -24,12 +24,11 @@ G:0,1:0.1
G:0,1:0.1
H:1:0.1
'''
joinable: false
"""
import macros, sequtils, sets, sugar, tables, typetraits
block t88:
type
BaseClass[V] = object of RootObj

View File

@@ -5,12 +5,11 @@ direct
generic
generic
'''
joinable: false
"""
import algorithm, sugar, sequtils, typetraits, asyncdispatch
block tconfusing_arrow:
type Deck = object
value: int

View File

@@ -1,6 +1,7 @@
discard """
output: '''Match failed: spam
Match failed: ham'''
joinable: false
"""
# bug #6220

View File

@@ -16,5 +16,4 @@ const
stdout.write(rawQuote)
stdout.write(tripleEmpty)
stdout.write(raw)
stdout.write(escaped)
#OUT a""long string"""""abc"def_'2'●𝌆𝌆A
stdout.writeLine(escaped)

View File

@@ -9,6 +9,7 @@ true
false
true
false'''
joinable: false
"""
import macros

View File

@@ -8,20 +8,21 @@ true
false
true
'''
joinable: false
"""
block tlowhigh:
type myEnum = enum e1, e2, e3, e4, e5
var a: array[myEnum, int]
for i in low(a) .. high(a):
a[i] = 0
proc sum(a: openarray[int]): int =
result = 0
for i in low(a)..high(a):
inc(result, a[i])
doAssert sum([1, 2, 3, 4]) == 10