changeset: 102681:4f69626fd923 user: Ned Deily date: Tue Aug 16 00:17:42 2016 -0400 files: Programs/_testembed.c description: Issue #27736: Improve the existing embedded interpreter init/fini test by increasing the number of iterations. That appears sufficient to expose the ref count problem fixed in this issue. Patch suggested by Xiang Zhang diff -r a6a248479b66 -r 4f69626fd923 Programs/_testembed.c --- a/Programs/_testembed.c Tue Aug 16 00:10:14 2016 -0400 +++ b/Programs/_testembed.c Tue Aug 16 00:17:42 2016 -0400 @@ -41,7 +41,7 @@ #endif int i, j; - for (i=0; i<3; i++) { + for (i=0; i<15; i++) { printf("--- Pass %d ---\n", i); _testembed_Py_Initialize(); mainstate = PyThreadState_Get();