@@ -46,16 +46,25 @@ function test_cases()
46
46
),
47
47
Testcase (" produce old" , nothing , (produce_old_value, 5.0 ), [sin (5.0 ), sin (5.0 )]),
48
48
Testcase (" branch on old value l" , nothing , (branch_on_old_value, 2.0 ), [true , 2.0 ]),
49
- Testcase (" branch on old value r" , nothing , (branch_on_old_value, - 1.0 ), [false , - 2.0 ]),
49
+ Testcase (
50
+ " branch on old value r" , nothing , (branch_on_old_value, - 1.0 ), [false , - 2.0 ]
51
+ ),
50
52
Testcase (" no produce" , nothing , (no_produce_test, 5.0 , 4.0 ), []),
51
53
Testcase (" new object" , nothing , (new_object_test, 5 , 4 ), [C (5 , 4 ), C (5 , 4 )]),
52
- Testcase (" branching test l" , nothing , (branching_test, 5.0 , 4.0 ), [string (sin (5.0 ))]),
53
- Testcase (" branching test r" , nothing , (branching_test, 4.0 , 5.0 ), [sin (4.0 ) * cos (5.0 )]),
54
+ Testcase (
55
+ " branching test l" , nothing , (branching_test, 5.0 , 4.0 ), [string (sin (5.0 ))]
56
+ ),
57
+ Testcase (
58
+ " branching test r" , nothing , (branching_test, 4.0 , 5.0 ), [sin (4.0 ) * cos (5.0 )]
59
+ ),
54
60
Testcase (" unused argument test" , nothing , (unused_argument_test, 3 ), [1 ]),
55
61
Testcase (" test with const" , nothing , (test_with_const,), [1 ]),
56
62
Testcase (" while loop" , nothing , (while_loop,), collect (1 : 9 )),
57
63
Testcase (
58
- " foreigncall tester" , nothing , (foreigncall_tester, " hi" ), [Ptr{UInt8}, Ptr{UInt8}]
64
+ " foreigncall tester" ,
65
+ nothing ,
66
+ (foreigncall_tester, " hi" ),
67
+ [Ptr{UInt8}, Ptr{UInt8}],
59
68
),
60
69
Testcase (" dynamic scope 1" , 5 , (dynamic_scope_tester_1,), [5 ]),
61
70
Testcase (" dynamic scope 2" , 6 , (dynamic_scope_tester_1,), [6 ]),
0 commit comments