| 1 | suite "differential/runtime-numeric-intrinsics" |
| 2 | |
| 3 | case "intrinsic_sqrt_matches_references" |
| 4 | source "../../../test_programs/intrinsic_sqrt.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 "intrinsic_trig_matches_references" |
| 13 | source "../../../test_programs/intrinsic_trig.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 "intrinsic_mod_matches_references" |
| 22 | source "../../../test_programs/intrinsic_mod.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 "intrinsic_abs_max_min_matches_references" |
| 31 | source "../../../test_programs/intrinsic_abs_max_min.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 |