Text · 637 bytes Raw Blame History
1 suite "runtime/arithmetic"
2
3 case "arithmetic"
4 source "../../../test_programs/arithmetic.f90"
5 armfortas => run
6 expect run.stdout check-comments
7 expect run.exit_code equals 0
8 end
9
10 case "mixed_types"
11 source "../../fixtures/runtime/mixed_types.f90"
12 armfortas => run
13 expect run.stdout check-comments
14 expect run.exit_code equals 0
15 end
16
17 case "real_function"
18 source "../../fixtures/runtime/real_function.f90"
19 armfortas => run
20 expect run.stdout check-comments
21 expect run.exit_code equals 0
22 end
23
24 case "dot_product"
25 source "../../../test_programs/dot_product.f90"
26 armfortas => run
27 expect run.stdout check-comments
28 expect run.exit_code equals 0
29 end
30