blob: 4ed8cdddfa089733c0a7e3a37b677f238a6bff9b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
|
# Format:
# [B|F] testname [E|P] result
# [B|F]: Compiler outcome.
# B: Expect that this test will build.
# F: Expect that this test will not build.
# testname: Test case
# The test that will run. We will try to
# compile 'testname.myr' to 'testname',
# and then execute it, verifying the result
# [E|P|C]: Result type
# E tells us that the result is an exit status
# P tells us that the result is on stdout,
# and should be compared to the value on the
# line
# C tells us that the result is on stdout,
# and should be compared to the contents of
# the file passed on the line.
# result: Result value
# What we compare with. This should be self-
# evident.
B main E 0
B splitline E 3
B add E 53
B mul E 42
B mul8 E 18
B div E 42
B mod E 6
B bsr E 5
B chartest E 0
B trunccast E 15
B zwidencast E 99
B swidencast E 99
B derefassign E 123
B ptrpreinc E 9
B incret E 1
B outparam E 42
B outparam-sl E 2
B struct1 E 12
B struct E 42
B align C
B structptr E 42
B structasn E 42
B structarray E 42
B structret E 42
B constslice P 2312345678
B exportmain E 42
B slalloc E 123
B neststruct E 3
B array E 7
B arrayaddr E 42
B global-arrayvar E 7
B arraylen E 12
B slice E 10
B slicelen E 5
B call E 42
B doublecall P 42,33
B voidcall E 12
B voidarg P 3
B voidassign P ok
B callbig E 42
B nestfn E 42
B foldidx P 123,456
B closure P 111555333666
B fncast P ok
B loop P 0123401236789
B subrangefor P 12
B patiter P 23512
B custiter P 67891011
B condiftrue E 7
B condiffalse E 9
B condifrel E 7
B ptrcmp E 0
B overlappingif E 2
#B bigcondarg C ## BUGGERED
B fib E 21
B basicfloat E 84
B sqrt E 4
B mandelbrot C
B log-and E 0
B log-or E 1
B str E 102
B generic E 42
B genericval E 42
B trait-builtin E 42
B emptytrait E 123
B traitimpl P 246,44,meee
# B compoundimpl P intptr,charptr BUGGERED
B nestucon P asdf
B mkunion E 0
B uconinit P 'A B C 123'
B genericcall E 42
B generictype E 0
B genericret E 42
B genericmatch E 15
B genericrec E 0
B genericimpl P 'int string @a @a[:]'
B recgeneric P 'built'
B bigtyblob P '`U100 '
# B genericchain P 'val = 123' ## BUGGERED
B genericmake P 'val = 123'
B genericuret E 42
B sizeof E 4
B gsizeof E 5
B matchint E 84
B matchconst E 88
B matchnsconst P 'matched badchar'
B matchunion E 84
B matchtup E 42
B matchstruct E 42
B matcharray E 42
B matchargunion E 69
B matchvoid P 'ok'
B matchexhaust P worked
B matchargstr C
B matchunion_sl P foo
B matchbind E 8
B matchptr P 'worked'
F matchmixed
B bigliteral P 34359738368
B arraylit-ni E 2
B arraypass P 1
B livearraylit E 21
# B arraylit E 3 ## BUGGERED
B structlit E 42
B livestructlit E 21
B tuple E 42
B slgrow E 42
B tyrec E 42
B infer-named E 99
B exportcycle E 0
B import-type E 0
B helloworld P Hello-世界
B encodechar P 1世界äa
B strtab C
B catfile C
B strstrip C
B strsplit C
B strfind C
B strjoin C
B exporttrait
# B local-labels E 10 ## BUGGERED
F declmismatch
F infermismatch
# F usedef ## BUGGERED
F occur
F tyoccur
F union-extraarg
F union-missingarg
F match-badtypes
F generic-in-const
F aritylow
F arityhigh
F badop
B voideffect P pass
B foroptexpr P pass
B bounds E 134
|