summaryrefslogtreecommitdiff
path: root/testing/embedding/thread1-test.c
Commit message (Collapse)AuthorAgeFilesLines
* (untested) trying to have the multithreaded tests run on windowsArmin Rigo2016-01-121-2/+1
|
* A test checking that thread-local values are saved, even thoughArmin Rigo2016-01-021-1/+1
| | | | there is no underlying official Python thread
* We need fflush(stdout) here, for a possibly bad reason: cpython 2.xArmin Rigo2016-01-021-0/+1
| | | | | writes to stdout, so it gets in the correct order, but pypy (and likely cpython 3.x) writes directly to the file descriptor
* A test of loading different cffi embedded modules in different threads.Armin Rigo2016-01-011-1/+1
| | | | Test fails.
* test multiple threads all doing the initial call to an "extern Python"Armin Rigo2016-01-011-0/+43
function in parallel