summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMichael Felt <aixtools@users.noreply.github.com>2018-12-28 13:57:37 (GMT)
committerNick Coghlan <ncoghlan@gmail.com>2018-12-28 13:57:37 (GMT)
commite2926b72488596f59e43c27f3b7cedf0c5b9e88e (patch)
treedc8a3af47e822ffc6573726decb9c8dd75e6af7a /Misc
parentc465682718f15cd3deb6b37db5fb607718ac64ed (diff)
downloadcpython-e2926b72488596f59e43c27f3b7cedf0c5b9e88e.zip
cpython-e2926b72488596f59e43c27f3b7cedf0c5b9e88e.tar.gz
cpython-e2926b72488596f59e43c27f3b7cedf0c5b9e88e.tar.bz2
bpo-34373: fix test_mktime and test_pthread_getcpuclickid tests on AIX (GH-8726)
* Fix test_mktime on AIX by adding code to get mktime to behave the same way as it does on other *nix systems * Fix test_pthread_getcpuclickid in AIX by adjusting the test case expectations when running on AIX in 32-bit mode Patch by Michael Felt.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Tests/2018-08-10-16-17-51.bpo-34373.SKdb1k.rst3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Tests/2018-08-10-16-17-51.bpo-34373.SKdb1k.rst b/Misc/NEWS.d/next/Tests/2018-08-10-16-17-51.bpo-34373.SKdb1k.rst
new file mode 100644
index 0000000..1df5449
--- /dev/null
+++ b/Misc/NEWS.d/next/Tests/2018-08-10-16-17-51.bpo-34373.SKdb1k.rst
@@ -0,0 +1,3 @@
+Fix ``test_mktime`` and ``test_pthread_getcpuclickid`` tests for AIX
+Add range checking for ``_PyTime_localtime`` for AIX
+Patch by Michael Felt