diff options
Diffstat (limited to 'Misc/NEWS.d/next/Tests')
12 files changed, 23 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Tests/0001.bpo-26939.7j_W5R.rst b/Misc/NEWS.d/next/Tests/0001.bpo-26939.7j_W5R.rst new file mode 100644 index 0000000..1288f34 --- /dev/null +++ b/Misc/NEWS.d/next/Tests/0001.bpo-26939.7j_W5R.rst @@ -0,0 +1,2 @@ +Add the support.setswitchinterval() function to fix test_functools hanging +on the Android armv7 qemu emulator. diff --git a/Misc/NEWS.d/next/Tests/0002.bpo-28217.Y37OKV.rst b/Misc/NEWS.d/next/Tests/0002.bpo-28217.Y37OKV.rst new file mode 100644 index 0000000..90fb863 --- /dev/null +++ b/Misc/NEWS.d/next/Tests/0002.bpo-28217.Y37OKV.rst @@ -0,0 +1 @@ +Adds _testconsole module to test console input. diff --git a/Misc/NEWS.d/next/Tests/0003.bpo-28409.Q2IlxJ.rst b/Misc/NEWS.d/next/Tests/0003.bpo-28409.Q2IlxJ.rst new file mode 100644 index 0000000..27af4a2 --- /dev/null +++ b/Misc/NEWS.d/next/Tests/0003.bpo-28409.Q2IlxJ.rst @@ -0,0 +1 @@ +regrtest: fix the parser of command line arguments. diff --git a/Misc/NEWS.d/next/Tests/0004.bpo-26944.ChZ_BO.rst b/Misc/NEWS.d/next/Tests/0004.bpo-26944.ChZ_BO.rst new file mode 100644 index 0000000..78384ff --- /dev/null +++ b/Misc/NEWS.d/next/Tests/0004.bpo-26944.ChZ_BO.rst @@ -0,0 +1,2 @@ +Fix test_posix for Android where 'id -G' is entirely wrong or missing the +effective gid. diff --git a/Misc/NEWS.d/next/Tests/0005.bpo-23839.zsT_L9.rst b/Misc/NEWS.d/next/Tests/0005.bpo-23839.zsT_L9.rst new file mode 100644 index 0000000..8cf2627 --- /dev/null +++ b/Misc/NEWS.d/next/Tests/0005.bpo-23839.zsT_L9.rst @@ -0,0 +1 @@ +Various caches now are cleared before running every test file. diff --git a/Misc/NEWS.d/next/Tests/0006.bpo-28666.RtTk-4.rst b/Misc/NEWS.d/next/Tests/0006.bpo-28666.RtTk-4.rst new file mode 100644 index 0000000..ec98303 --- /dev/null +++ b/Misc/NEWS.d/next/Tests/0006.bpo-28666.RtTk-4.rst @@ -0,0 +1,2 @@ +Now test.support.rmtree is able to remove unwritable or unreadable +directories. diff --git a/Misc/NEWS.d/next/Tests/0007.bpo-26936.XSZSVS.rst b/Misc/NEWS.d/next/Tests/0007.bpo-26936.XSZSVS.rst new file mode 100644 index 0000000..330399c --- /dev/null +++ b/Misc/NEWS.d/next/Tests/0007.bpo-26936.XSZSVS.rst @@ -0,0 +1,2 @@ +Fix the test_socket failures on Android - getservbyname(), getservbyport() +and getaddrinfo() are broken on some Android API levels. diff --git a/Misc/NEWS.d/next/Tests/0008.bpo-28683.Fp-Hdq.rst b/Misc/NEWS.d/next/Tests/0008.bpo-28683.Fp-Hdq.rst new file mode 100644 index 0000000..2dd5006 --- /dev/null +++ b/Misc/NEWS.d/next/Tests/0008.bpo-28683.Fp-Hdq.rst @@ -0,0 +1,2 @@ +Fix the tests that bind() a unix socket and raise PermissionError on Android +for a non-root user. diff --git a/Misc/NEWS.d/next/Tests/0009.bpo-28950.1W8Glo.rst b/Misc/NEWS.d/next/Tests/0009.bpo-28950.1W8Glo.rst new file mode 100644 index 0000000..c742178 --- /dev/null +++ b/Misc/NEWS.d/next/Tests/0009.bpo-28950.1W8Glo.rst @@ -0,0 +1 @@ +Disallow -j0 to be combined with -T/-l in regrtest command line arguments. diff --git a/Misc/NEWS.d/next/Tests/0010.bpo-24932.XLTzvR.rst b/Misc/NEWS.d/next/Tests/0010.bpo-24932.XLTzvR.rst new file mode 100644 index 0000000..044e7a4 --- /dev/null +++ b/Misc/NEWS.d/next/Tests/0010.bpo-24932.XLTzvR.rst @@ -0,0 +1 @@ +Use proper command line parsing in _testembed diff --git a/Misc/NEWS.d/next/Tests/0011.bpo-30197.c5wRfu.rst b/Misc/NEWS.d/next/Tests/0011.bpo-30197.c5wRfu.rst new file mode 100644 index 0000000..63461bb --- /dev/null +++ b/Misc/NEWS.d/next/Tests/0011.bpo-30197.c5wRfu.rst @@ -0,0 +1,5 @@ +Enhanced functions swap_attr() and swap_item() in the test.support module. +They now work when delete replaced attribute or item inside the with +statement. The old value of the attribute or item (or None if it doesn't +exist) now will be assigned to the target of the "as" clause, if there is +one. diff --git a/Misc/NEWS.d/next/Tests/0012.bpo-30357.n4CPEa.rst b/Misc/NEWS.d/next/Tests/0012.bpo-30357.n4CPEa.rst new file mode 100644 index 0000000..c7e7b7f --- /dev/null +++ b/Misc/NEWS.d/next/Tests/0012.bpo-30357.n4CPEa.rst @@ -0,0 +1,3 @@ +test_thread: setUp() now uses support.threading_setup() and +support.threading_cleanup() to wait until threads complete to avoid random +side effects on following tests. Initial patch written by Grzegorz Grzywacz. |