()
| 77 | |
| 78 | |
| 79 | def test_f2py_init_compile_failure(): |
| 80 | # verify an appropriate integer status value returned by |
| 81 | # f2py.compile() when invalid Fortran is provided |
| 82 | ret_val = numpy.f2py.compile(b"invalid") |
| 83 | assert ret_val == 1 |
| 84 | |
| 85 | |
| 86 | def test_f2py_init_compile_bad_cmd(): |