File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -284,7 +284,7 @@ RUN(NAME array_size_01 LABELS cpython llvm c)
284
284
RUN (NAME array_size_02 LABELS cpython llvm c )
285
285
RUN (NAME array_01 LABELS cpython llvm wasm c )
286
286
RUN (NAME array_02 LABELS cpython wasm c )
287
- RUN (NAME array_03 LABELS cpython llvm )
287
+ RUN (NAME array_03 LABELS cpython llvm c )
288
288
RUN (NAME bindc_01 LABELS cpython llvm c )
289
289
RUN (NAME bindc_02 LABELS cpython llvm c )
290
290
RUN (NAME bindc_04 LABELS llvm c )
Original file line number Diff line number Diff line change @@ -7,12 +7,13 @@ def f():
7
7
i : i32
8
8
for i in range (n ):
9
9
a [i ] = f64 (i + 1 )
10
+ for i in range (n ):
11
+ assert abs (a [i ] - f64 (i + 1 )) < 1e-12
10
12
b : Allocatable [i32 [:]]
11
13
n = 10
12
14
b = empty ((n ,), dtype = int32 )
13
15
for i in range (n ):
14
16
b [i ] = i + 1
15
- print (a )
16
17
for i in range (n ):
17
18
assert b [i ] == i + 1
18
19
You can’t perform that action at this time.
0 commit comments