| 1 | suite "differential/runtime-loop-edges" |
| 2 | |
| 3 | case "negative_step_matches_references" |
| 4 | source "../../../test_programs/negative_step.f90" |
| 5 | opts => O0 |
| 6 | armfortas => run |
| 7 | differential => gfortran, flang-new |
| 8 | expect run.stdout check-comments |
| 9 | expect run.exit_code equals 0 |
| 10 | end |
| 11 | |
| 12 | case "edge_loops_matches_references" |
| 13 | source "../../../test_programs/edge_loops.f90" |
| 14 | opts => O0 |
| 15 | armfortas => run |
| 16 | differential => gfortran, flang-new |
| 17 | expect run.stdout check-comments |
| 18 | expect run.exit_code equals 0 |
| 19 | end |
| 20 | |
| 21 | case "loop_sum_matches_references" |
| 22 | source "../../../test_programs/loop_sum.f90" |
| 23 | opts => O0 |
| 24 | armfortas => run |
| 25 | differential => gfortran, flang-new |
| 26 | expect run.stdout check-comments |
| 27 | expect run.exit_code equals 0 |
| 28 | end |
| 29 | |
| 30 | case "fizzbuzz_matches_references" |
| 31 | source "../../../test_programs/fizzbuzz.f90" |
| 32 | opts => O0 |
| 33 | armfortas => run |
| 34 | differential => gfortran, flang-new |
| 35 | expect run.stdout check-comments |
| 36 | expect run.exit_code equals 0 |
| 37 | end |
| 38 |