summaryrefslogtreecommitdiff
path: root/tests/run
Commit message (Expand)AuthorAgeFilesLines
...
* | Use a different constant (PI instead of NAN) in the "import *" test since NAN...Stefan Behnel2018-09-231-6/+5
* | Merge pull request #2615 from robertwb/cpp-py-exceptionRobert Bradshaw2018-09-222-0/+22
|\ \ | |/ |/|
| * Allow catching both C++ and Python exceptions.Robert Bradshaw2018-09-202-0/+22
* | Enable the NumPy 1.7 API macro in all NumPy integration tests that do not rel...Stefan Behnel2018-09-224-4/+4
* | Add test for #2621.Stefan Behnel2018-09-221-0/+12
* | Prevent assigned global variables from being marked and treated as closure va...Stefan Behnel2018-09-221-0/+20
* | Clean up directives to distinguish between those that belong to a function or...Stefan Behnel2018-09-222-0/+38
* | Add a pure Python OpenMP test to make sure everything works from pure Python ...Stefan Behnel2018-09-211-0/+60
|/
* Merge branch 'except_plus_null_pyobject' of https://github.com/bloomberg/cythonRobert Bradshaw2018-09-172-21/+20
|\
| * Test an "except +" function returning <object>NULLMatt Wozniski2018-09-172-0/+24
* | Catch Python exceptions for object-returning except+ functions.Robert Bradshaw2018-09-172-0/+25
* | Support a direct "language_level" argument in "cython.inline()", and fix a te...Stefan Behnel2018-09-161-1/+1
* | Reduce runtime of a Pythran test through a lower number of iterations.Stefan Behnel2018-09-161-3/+3
|/
* Try to fix test compilation problem with MSVC, where 1/0 is a compile time er...Stefan Behnel2018-09-151-6/+11
* Disable some CPython exception unit tests in older Python versions.Stefan Behnel2018-09-151-9/+18
* Disable a failing test case that is less important than the rest of the Py3.7...Stefan Behnel2018-09-151-1/+3
* Initial (incomplete) attempt at supporting the Py3.7 exception state stack.Stefan Behnel2018-09-151-3/+17
* Add test_exceptions.py from latest Py3.8-pre.Stefan Behnel2018-09-151-0/+1342
* Generally allow the "nogil" decorator and context manager to accept boolean a...Stefan Behnel2018-09-141-1/+20
* Support "@cython.nogil" decorator in pure mode.Stefan Behnel2018-09-141-0/+19
* Avoid C division by 0 to provoque a runtime error in a test, because MSVC con...Stefan Behnel2018-09-081-1/+2
* Try to call "__rmod__()" during string %-formatting when the right side is a ...Stefan Behnel2018-09-081-0/+24
* Include '%a' in the string formatting types that are optimised into f-strings.Stefan Behnel2018-09-081-0/+36
* Adapt test_unicode.py test from CPython 3.7 and disable some unrelated tests ...Stefan Behnel2018-09-082-33/+1473
* Fix constant folding of multiplied string literals when they appear in anothe...Stefan Behnel2018-09-081-0/+4
* Add "test_unicode.py" from CPython 3.7.Stefan Behnel2018-09-081-0/+2924
* Tighten the new 2-item slicing tests by asserting a specific tree structure.Stefan Behnel2018-09-071-0/+26
* Merge pull request #2583 from cjgibson/2508-slicing-fixesscoder2018-09-072-16/+451
|\
| * Reworking slicing unittests to include sliced type - added unsuccessful attem...cjgibson2018-08-271-469/+283
| * Fixing test cases for Python3, added unicode.cjgibson2018-08-271-161/+264
| * Add failing tests.cjgibson2018-08-272-16/+534
* | Enable a working test.Stefan Behnel2018-09-021-2/+1
|/
* Fix test command line to make it work on Windows.Stefan Behnel2018-08-251-3/+3
* Add test for Cython module usage in subinterpreters. In Py3.5, we should now ...Stefan Behnel2018-08-251-0/+79
* Extend CPython C-API test to at least include (and thus parser) all .pxd files.Stefan Behnel2018-08-251-0/+45
* Extend module reimport test to also try reimports without knowing the package.Stefan Behnel2018-08-251-0/+14
* Try to fix a test under MacOS.Stefan Behnel2018-08-241-8/+18
* Fix usage of special name "sizeof" in a test: cannot be assigned to a variabl...Stefan Behnel2018-08-231-1/+1
* Merge pull request #2553 from gabrieldemarmiesse/line_lenghtscoder2018-08-211-1/+2
|\
| * Set the maximum line length to 150.gabrieldemarmiesse2018-08-181-1/+2
* | Exclude a test that seems platform specific (at least, it fails on MacOS-X fo...Stefan Behnel2018-08-201-1/+3
* | Disable broken assertion on os-x.Robert Bradshaw2018-08-161-2/+3
* | Add reload(module) test that checks the current module singleton property.Stefan Behnel2018-08-151-0/+14
|/
* Try to stabilise a test that depends on importing from the current directory ...Stefan Behnel2018-08-111-0/+5
* Merge pull request #2207 from vallsv/improve-cpp11-containersscoder2018-08-111-1/+157
|\
| * Add const_at to unordered mapValentin Valls2018-04-201-0/+5
| * Add erase/insert using double iterator to setValentin Valls2018-04-201-0/+17
| * Update unordered_map to match C++11Valentin Valls2018-04-201-2/+19
| * Update unordered_set to match C++11Valentin Valls2018-04-201-0/+38
| * Add shrink_to_fit to dequeValentin Valls2018-04-201-0/+13