| 1 | suite "runtime/matrix" |
| 2 | |
| 3 | case "hello_opt_matrix" |
| 4 | source "../../../test_programs/hello.f90" |
| 5 | opts => O0, O1, O2 |
| 6 | armfortas => ir, optir, run |
| 7 | expect run.stdout check-comments |
| 8 | expect run.exit_code equals 0 |
| 9 | end |
| 10 | |
| 11 | case "arithmetic_ofast_future" |
| 12 | source "../../../test_programs/arithmetic.f90" |
| 13 | opts => O0, Ofast |
| 14 | armfortas => run |
| 15 | expect run.stdout check-comments |
| 16 | expect run.exit_code equals 0 |
| 17 | future when Ofast because "Ofast is reserved for the wider optimization matrix once the optimizer pipeline is wired through this branch." |
| 18 | end |
| 19 |