summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMatthias Braun <matze@braunis.de>2020-03-17 16:51:44 (GMT)
committerGitHub <noreply@github.com>2020-03-17 16:51:44 (GMT)
commit52268941f37e3e27bd01792b081877ec3bc9ce12 (patch)
treeb690475b9a1443d3a33ad551ef6851ba60346fd8 /Misc
parent982307b9cceef36e30ac43b13032d68c3b921adc (diff)
downloadcpython-52268941f37e3e27bd01792b081877ec3bc9ce12.zip
cpython-52268941f37e3e27bd01792b081877ec3bc9ce12.tar.gz
cpython-52268941f37e3e27bd01792b081877ec3bc9ce12.tar.bz2
bpo-26067: Do not fail test_shutil / chown when gid/uid cannot be resolved (#19032)
* bpo-26067: Do not fail test_shutil.chown when gid/uid cannot be resolved There is no guarantee that the users primary uid or gid can be resolved in the unix group/account databases. Skip the last part of the chown test if we cannot resolve the gid or uid to a name. * 📜🤖 Added by blurb_it. * Address review feedback * address review feedback correctly * fix typo Co-authored-by: blurb-it[bot] <43283697+blurb-it[bot]@users.noreply.github.com>
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Tests/2020-03-16-20-54-55.bpo-26067.m18_VV.rst1
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Tests/2020-03-16-20-54-55.bpo-26067.m18_VV.rst b/Misc/NEWS.d/next/Tests/2020-03-16-20-54-55.bpo-26067.m18_VV.rst
new file mode 100644
index 0000000..8b897a8
--- /dev/null
+++ b/Misc/NEWS.d/next/Tests/2020-03-16-20-54-55.bpo-26067.m18_VV.rst
@@ -0,0 +1 @@
+Do not fail test_shutil test_chown test when uid or gid of user cannot be resolved to a name.