summaryrefslogtreecommitdiff
path: root/numpy/f2py/tests/test_regression.py
Commit message (Collapse)AuthorAgeFilesLines
* TST, MAINT: Add `__init__.py` files to tests directories.Charles Harris2017-08-061-1/+1
| | | | | | | | This allows pytest to run with duplicate test file names. Note that `python <path-to-test-file>` no longer works with this change, nor will a simple `pytest numpy`, because numpy is imported from the numpy repository. However, `python runtests.py` and `>>> numpy.test()` are still available.
* BUG: fixed kind specifications for parametersNick Papior2016-11-271-3/+2
| | | | | | | | | | | | | Fortran sources with parameters having kind-specifiers where not correctly intercepted in the crackfortran.py source. The reason was a restrictive check for only integer specifiers which did not split real's into the correct number. Furthermore, several tests has been added which tests the different kind specifiers and their use in codes, also all of them together. Signed-off-by: Nick Papior <nickpapior@gmail.com>
* STY: PEP8 fixes in numpy/f2py/tests.Charles Harris2015-07-251-0/+2
|
* TST: Add basic test for compiling with intent(in out).Charles Harris2014-10-091-0/+32
This checks that the compilation works and that the expected error is raised when non-contiguous arrays are passed as intent(in out).