Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bpo-40275: Remove test helpers import in test.support #21771

Merged
merged 1 commit into from
Aug 8, 2020

Conversation

shihai1991
Copy link
Member

@shihai1991 shihai1991 commented Aug 7, 2020

  • The following test cases use new test helpers: test_loading, test_os, test_posixpath
  • Remove test helpers import in test.support

https://bugs.python.org/issue40275

@shihai1991 shihai1991 changed the title [WIP] Remove test helpers import in test.support bpo-40275: Remove test helpers import in test.support Aug 8, 2020
@shihai1991
Copy link
Member Author

@vstinner Hi, victor. It's all done.

@vstinner vstinner merged commit d94af3f into python:master Aug 8, 2020
@vstinner
Copy link
Member

vstinner commented Aug 8, 2020

Well done, thanks @shihai1991!

@bedevere-bot
Copy link

⚠️⚠️⚠️ Buildbot failure ⚠️⚠️⚠️

Hi! The buildbot AMD64 RHEL7 3.x has failed when building commit d94af3f.

What do you need to do:

  1. Don't panic.
  2. Check the buildbot page in the devguide if you don't know what the buildbots are or how they work.
  3. Go to the page of the buildbot that failed (https://buildbot.python.org/all/#builders/4/builds/1313) and take a look at the build logs.
  4. Check if the failure is related to this commit (d94af3f) or if it is a false positive.
  5. If the failure is related to this commit, please, reflect that on the issue and make a new Pull Request with a fix.

You can take a look at the buildbot page here:

https://buildbot.python.org/all/#builders/4/builds/1313

Failed tests:

  • test_dbm_ndbm

Failed subtests:

  • test_keys - test.test_dbm_ndbm.DbmTestCase
  • test_nonascii_filename - test.test_dbm_ndbm.DbmTestCase
  • test_empty_value - test.test_dbm_ndbm.DbmTestCase
  • test_write_readonly_file - test.test_dbm_ndbm.DbmTestCase
  • test_unicode - test.test_dbm_ndbm.DbmTestCase
  • test_modes - test.test_dbm_ndbm.DbmTestCase
  • test_nonexisting_file - test.test_dbm_ndbm.DbmTestCase
  • test_context_manager - test.test_dbm_ndbm.DbmTestCase
  • test_bytes - test.test_dbm_ndbm.DbmTestCase

Summary of the results of the build (if available):

== Tests result: FAILURE then FAILURE ==

408 tests OK.

10 slowest tests:

  • test_concurrent_futures: 3 min 12 sec
  • test_peg_generator: 2 min 36 sec
  • test_unparse: 2 min 31 sec
  • test_tokenize: 2 min 29 sec
  • test_mailbox: 2 min 21 sec
  • test_multiprocessing_spawn: 2 min 12 sec
  • test_shelve: 2 min 2 sec
  • test_asyncio: 1 min 38 sec
  • test_lib2to3: 1 min 36 sec
  • test_multiprocessing_forkserver: 1 min 29 sec

1 test failed:
test_dbm_ndbm

14 tests skipped:
test_devpoll test_gdb test_ioctl test_kqueue test_msilib
test_ossaudiodev test_startfile test_tix test_tk test_ttk_guionly
test_winconsoleio test_winreg test_winsound test_zipfile64

1 re-run test:
test_dbm_ndbm

Total duration: 6 min 18 sec

Click to see traceback logs
Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-x86_64/build/Lib/test/test_dbm_ndbm.py", line 68, in test_context_manager
    self.assertEqual(list(db.keys()), [b"ndbm context manager"])
AssertionError: Lists differ: [b'bytes key \xbd', b'ndbm context manager'] != [b'ndbm context manager']


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-x86_64/build/Lib/test/test_dbm_ndbm.py", line 19, in tearDown
    support.unlink(self.filename + suffix)
AttributeError: module 'test.support' has no attribute 'unlink'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-x86_64/build/Lib/test/test_dbm_ndbm.py", line 46, in test_empty_value
    self.assertEqual(self.d.keys(), [])
AssertionError: Lists differ: [b'bytes key \xbd', b'ndbm context manager'] != []


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-x86_64/build/Lib/test/test_dbm_ndbm.py", line 111, in test_nonascii_filename
    self.addCleanup(support.unlink, filename + suffix)
AttributeError: module 'test.support' has no attribute 'unlink'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-x86_64/build/Lib/test/test_dbm_ndbm.py", line 23, in test_keys
    self.assertEqual(self.d.keys(), [])
AssertionError: Lists differ: [b'bytes key \xbd', b'ndbm context manager'] != []

@bedevere-bot
Copy link

⚠️⚠️⚠️ Buildbot failure ⚠️⚠️⚠️

Hi! The buildbot AMD64 Fedora Stable 3.x has failed when building commit d94af3f.

What do you need to do:

  1. Don't panic.
  2. Check the buildbot page in the devguide if you don't know what the buildbots are or how they work.
  3. Go to the page of the buildbot that failed (https://buildbot.python.org/all/#builders/41/builds/1196) and take a look at the build logs.
  4. Check if the failure is related to this commit (d94af3f) or if it is a false positive.
  5. If the failure is related to this commit, please, reflect that on the issue and make a new Pull Request with a fix.

You can take a look at the buildbot page here:

https://buildbot.python.org/all/#builders/41/builds/1196

Failed tests:

  • test_dbm_ndbm

Failed subtests:

  • test_keys - test.test_dbm_ndbm.DbmTestCase
  • test_nonascii_filename - test.test_dbm_ndbm.DbmTestCase
  • test_empty_value - test.test_dbm_ndbm.DbmTestCase
  • test_write_readonly_file - test.test_dbm_ndbm.DbmTestCase
  • test_unicode - test.test_dbm_ndbm.DbmTestCase
  • test_modes - test.test_dbm_ndbm.DbmTestCase
  • test_nonexisting_file - test.test_dbm_ndbm.DbmTestCase
  • test_context_manager - test.test_dbm_ndbm.DbmTestCase
  • test_bytes - test.test_dbm_ndbm.DbmTestCase

Summary of the results of the build (if available):

== Tests result: FAILURE then FAILURE ==

409 tests OK.

10 slowest tests:

  • test_concurrent_futures: 3 min 3 sec
  • test_peg_generator: 2 min 38 sec
  • test_tokenize: 2 min 24 sec
  • test_multiprocessing_spawn: 2 min 22 sec
  • test_unparse: 1 min 50 sec
  • test_capi: 1 min 44 sec
  • test_lib2to3: 1 min 43 sec
  • test_asyncio: 1 min 34 sec
  • test_gdb: 1 min 34 sec
  • test_multiprocessing_forkserver: 1 min 25 sec

1 test failed:
test_dbm_ndbm

13 tests skipped:
test_devpoll test_ioctl test_kqueue test_msilib test_ossaudiodev
test_startfile test_tix test_tk test_ttk_guionly test_winconsoleio
test_winreg test_winsound test_zipfile64

1 re-run test:
test_dbm_ndbm

Total duration: 7 min 3 sec

Click to see traceback logs
Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64/build/Lib/test/test_dbm_ndbm.py", line 68, in test_context_manager
    self.assertEqual(list(db.keys()), [b"ndbm context manager"])
AssertionError: Lists differ: [b'bytes key \xbd', b'ndbm context manager'] != [b'ndbm context manager']


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64/build/Lib/test/test_dbm_ndbm.py", line 19, in tearDown
    support.unlink(self.filename + suffix)
AttributeError: module 'test.support' has no attribute 'unlink'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64/build/Lib/test/test_dbm_ndbm.py", line 111, in test_nonascii_filename
    self.addCleanup(support.unlink, filename + suffix)
AttributeError: module 'test.support' has no attribute 'unlink'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64/build/Lib/test/test_dbm_ndbm.py", line 23, in test_keys
    self.assertEqual(self.d.keys(), [])
AssertionError: Lists differ: [b'bytes key \xbd', b'ndbm context manager'] != []


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64/build/Lib/test/test_dbm_ndbm.py", line 46, in test_empty_value
    self.assertEqual(self.d.keys(), [])
AssertionError: Lists differ: [b'bytes key \xbd', b'ndbm context manager'] != []

@bedevere-bot
Copy link

⚠️⚠️⚠️ Buildbot failure ⚠️⚠️⚠️

Hi! The buildbot s390x SLES 3.x has failed when building commit d94af3f.

What do you need to do:

  1. Don't panic.
  2. Check the buildbot page in the devguide if you don't know what the buildbots are or how they work.
  3. Go to the page of the buildbot that failed (https://buildbot.python.org/all/#builders/6/builds/1554) and take a look at the build logs.
  4. Check if the failure is related to this commit (d94af3f) or if it is a false positive.
  5. If the failure is related to this commit, please, reflect that on the issue and make a new Pull Request with a fix.

You can take a look at the buildbot page here:

https://buildbot.python.org/all/#builders/6/builds/1554

Failed tests:

  • test_dbm_ndbm

Failed subtests:

  • test_keys - test.test_dbm_ndbm.DbmTestCase
  • test_nonascii_filename - test.test_dbm_ndbm.DbmTestCase
  • test_empty_value - test.test_dbm_ndbm.DbmTestCase
  • test_write_readonly_file - test.test_dbm_ndbm.DbmTestCase
  • test_unicode - test.test_dbm_ndbm.DbmTestCase
  • test_modes - test.test_dbm_ndbm.DbmTestCase
  • test_nonexisting_file - test.test_dbm_ndbm.DbmTestCase
  • test_context_manager - test.test_dbm_ndbm.DbmTestCase
  • test_bytes - test.test_dbm_ndbm.DbmTestCase

Summary of the results of the build (if available):

== Tests result: FAILURE then FAILURE ==

407 tests OK.

10 slowest tests:

  • test_concurrent_futures: 4 min 16 sec
  • test_unparse: 2 min 50 sec
  • test_tokenize: 2 min 31 sec
  • test_multiprocessing_spawn: 1 min 57 sec
  • test_capi: 1 min 35 sec
  • test_multiprocessing_forkserver: 1 min 33 sec
  • test_unicodedata: 1 min 23 sec
  • test_multiprocessing_fork: 1 min 12 sec
  • test_asyncio: 1 min 11 sec
  • test_lib2to3: 1 min 10 sec

1 test failed:
test_dbm_ndbm

15 tests skipped:
test_devpoll test_ioctl test_kqueue test_msilib test_ossaudiodev
test_readline test_sqlite test_startfile test_tix test_tk
test_ttk_guionly test_winconsoleio test_winreg test_winsound
test_zipfile64

1 re-run test:
test_dbm_ndbm

Total duration: 8 min 18 sec

Click to see traceback logs
Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.x.edelsohn-sles-z/build/Lib/test/test_dbm_ndbm.py", line 46, in test_empty_value
    self.assertEqual(self.d.keys(), [])
AssertionError: Lists differ: [b'ndbm context manager', b'bytes key \xbd'] != []


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.x.edelsohn-sles-z/build/Lib/test/test_dbm_ndbm.py", line 19, in tearDown
    support.unlink(self.filename + suffix)
AttributeError: module 'test.support' has no attribute 'unlink'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.x.edelsohn-sles-z/build/Lib/test/test_dbm_ndbm.py", line 23, in test_keys
    self.assertEqual(self.d.keys(), [])
AssertionError: Lists differ: [b'ndbm context manager', b'bytes key \xbd'] != []


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.x.edelsohn-sles-z/build/Lib/test/test_dbm_ndbm.py", line 111, in test_nonascii_filename
    self.addCleanup(support.unlink, filename + suffix)
AttributeError: module 'test.support' has no attribute 'unlink'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.x.edelsohn-sles-z/build/Lib/test/test_dbm_ndbm.py", line 68, in test_context_manager
    self.assertEqual(list(db.keys()), [b"ndbm context manager"])
AssertionError: Lists differ: [b'ndbm context manager', b'bytes key \xbd'] != [b'ndbm context manager']

@bedevere-bot
Copy link

⚠️⚠️⚠️ Buildbot failure ⚠️⚠️⚠️

Hi! The buildbot s390x RHEL8 3.x has failed when building commit d94af3f.

What do you need to do:

  1. Don't panic.
  2. Check the buildbot page in the devguide if you don't know what the buildbots are or how they work.
  3. Go to the page of the buildbot that failed (https://buildbot.python.org/all/#builders/328/builds/1107) and take a look at the build logs.
  4. Check if the failure is related to this commit (d94af3f) or if it is a false positive.
  5. If the failure is related to this commit, please, reflect that on the issue and make a new Pull Request with a fix.

You can take a look at the buildbot page here:

https://buildbot.python.org/all/#builders/328/builds/1107

Failed tests:

  • test_dbm_ndbm

Failed subtests:

  • test_keys - test.test_dbm_ndbm.DbmTestCase
  • test_nonascii_filename - test.test_dbm_ndbm.DbmTestCase
  • test_empty_value - test.test_dbm_ndbm.DbmTestCase
  • test_write_readonly_file - test.test_dbm_ndbm.DbmTestCase
  • test_unicode - test.test_dbm_ndbm.DbmTestCase
  • test_modes - test.test_dbm_ndbm.DbmTestCase
  • test_nonexisting_file - test.test_dbm_ndbm.DbmTestCase
  • test_context_manager - test.test_dbm_ndbm.DbmTestCase
  • test_bytes - test.test_dbm_ndbm.DbmTestCase

Summary of the results of the build (if available):

== Tests result: FAILURE then FAILURE ==

408 tests OK.

10 slowest tests:

  • test_concurrent_futures: 3 min 48 sec
  • test_gdb: 2 min 20 sec
  • test_multiprocessing_spawn: 2 min 9 sec
  • test_peg_generator: 2 min 4 sec
  • test_capi: 1 min 58 sec
  • test_tokenize: 1 min 49 sec
  • test_multiprocessing_forkserver: 1 min 33 sec
  • test_asyncio: 1 min 21 sec
  • test_unparse: 1 min 15 sec
  • test_lib2to3: 1 min 15 sec

1 test failed:
test_dbm_ndbm

14 tests skipped:
test_devpoll test_ioctl test_kqueue test_msilib test_nis
test_ossaudiodev test_startfile test_tix test_tk test_ttk_guionly
test_winconsoleio test_winreg test_winsound test_zipfile64

1 re-run test:
test_dbm_ndbm

Total duration: 7 min 45 sec

Click to see traceback logs
Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.x.edelsohn-rhel8-z/build/Lib/test/test_dbm_ndbm.py", line 68, in test_context_manager
    self.assertEqual(list(db.keys()), [b"ndbm context manager"])
AssertionError: Lists differ: [b'ndbm context manager', b'bytes key \xbd'] != [b'ndbm context manager']


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.x.edelsohn-rhel8-z/build/Lib/test/test_dbm_ndbm.py", line 46, in test_empty_value
    self.assertEqual(self.d.keys(), [])
AssertionError: Lists differ: [b'ndbm context manager', b'bytes key \xbd'] != []


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.x.edelsohn-rhel8-z/build/Lib/test/test_dbm_ndbm.py", line 19, in tearDown
    support.unlink(self.filename + suffix)
AttributeError: module 'test.support' has no attribute 'unlink'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.x.edelsohn-rhel8-z/build/Lib/test/test_dbm_ndbm.py", line 23, in test_keys
    self.assertEqual(self.d.keys(), [])
AssertionError: Lists differ: [b'ndbm context manager', b'bytes key \xbd'] != []


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.x.edelsohn-rhel8-z/build/Lib/test/test_dbm_ndbm.py", line 111, in test_nonascii_filename
    self.addCleanup(support.unlink, filename + suffix)
AttributeError: module 'test.support' has no attribute 'unlink'

@bedevere-bot
Copy link

⚠️⚠️⚠️ Buildbot failure ⚠️⚠️⚠️

Hi! The buildbot PPC64LE Fedora Stable 3.x has failed when building commit d94af3f.

What do you need to do:

  1. Don't panic.
  2. Check the buildbot page in the devguide if you don't know what the buildbots are or how they work.
  3. Go to the page of the buildbot that failed (https://buildbot.python.org/all/#builders/358/builds/807) and take a look at the build logs.
  4. Check if the failure is related to this commit (d94af3f) or if it is a false positive.
  5. If the failure is related to this commit, please, reflect that on the issue and make a new Pull Request with a fix.

You can take a look at the buildbot page here:

https://buildbot.python.org/all/#builders/358/builds/807

Failed tests:

  • test_dbm_ndbm

Failed subtests:

  • test_keys - test.test_dbm_ndbm.DbmTestCase
  • test_nonascii_filename - test.test_dbm_ndbm.DbmTestCase
  • test_empty_value - test.test_dbm_ndbm.DbmTestCase
  • test_write_readonly_file - test.test_dbm_ndbm.DbmTestCase
  • test_unicode - test.test_dbm_ndbm.DbmTestCase
  • test_modes - test.test_dbm_ndbm.DbmTestCase
  • test_nonexisting_file - test.test_dbm_ndbm.DbmTestCase
  • test_context_manager - test.test_dbm_ndbm.DbmTestCase
  • test_bytes - test.test_dbm_ndbm.DbmTestCase

Summary of the results of the build (if available):

== Tests result: FAILURE then FAILURE ==

409 tests OK.

10 slowest tests:

  • test_unparse: 3 min 49 sec
  • test_concurrent_futures: 3 min 14 sec
  • test_peg_generator: 3 min 10 sec
  • test_tokenize: 3 min 4 sec
  • test_multiprocessing_spawn: 2 min 53 sec
  • test_unicodedata: 2 min 20 sec
  • test_lib2to3: 2 min 11 sec
  • test_capi: 2 min 4 sec
  • test_multiprocessing_forkserver: 1 min 56 sec
  • test_gdb: 1 min 46 sec

1 test failed:
test_dbm_ndbm

13 tests skipped:
test_devpoll test_ioctl test_kqueue test_msilib test_ossaudiodev
test_startfile test_tix test_tk test_ttk_guionly test_winconsoleio
test_winreg test_winsound test_zipfile64

1 re-run test:
test_dbm_ndbm

Total duration: 7 min 56 sec

Click to see traceback logs
Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le/build/Lib/test/test_dbm_ndbm.py", line 19, in tearDown
    support.unlink(self.filename + suffix)
AttributeError: module 'test.support' has no attribute 'unlink'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le/build/Lib/test/test_dbm_ndbm.py", line 46, in test_empty_value
    self.assertEqual(self.d.keys(), [])
AssertionError: Lists differ: [b'ndbm context manager', b'bytes key \xbd'] != []


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le/build/Lib/test/test_dbm_ndbm.py", line 111, in test_nonascii_filename
    self.addCleanup(support.unlink, filename + suffix)
AttributeError: module 'test.support' has no attribute 'unlink'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le/build/Lib/test/test_dbm_ndbm.py", line 68, in test_context_manager
    self.assertEqual(list(db.keys()), [b"ndbm context manager"])
AssertionError: Lists differ: [b'ndbm context manager', b'bytes key \xbd'] != [b'ndbm context manager']


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le/build/Lib/test/test_dbm_ndbm.py", line 23, in test_keys
    self.assertEqual(self.d.keys(), [])
AssertionError: Lists differ: [b'ndbm context manager', b'bytes key \xbd'] != []

@bedevere-bot
Copy link

⚠️⚠️⚠️ Buildbot failure ⚠️⚠️⚠️

Hi! The buildbot AMD64 RHEL8 LTO 3.x has failed when building commit d94af3f.

What do you need to do:

  1. Don't panic.
  2. Check the buildbot page in the devguide if you don't know what the buildbots are or how they work.
  3. Go to the page of the buildbot that failed (https://buildbot.python.org/all/#builders/7/builds/1239) and take a look at the build logs.
  4. Check if the failure is related to this commit (d94af3f) or if it is a false positive.
  5. If the failure is related to this commit, please, reflect that on the issue and make a new Pull Request with a fix.

You can take a look at the buildbot page here:

https://buildbot.python.org/all/#builders/7/builds/1239

Failed tests:

  • test_dbm_ndbm

Failed subtests:

  • test_keys - test.test_dbm_ndbm.DbmTestCase
  • test_nonascii_filename - test.test_dbm_ndbm.DbmTestCase
  • test_empty_value - test.test_dbm_ndbm.DbmTestCase
  • test_write_readonly_file - test.test_dbm_ndbm.DbmTestCase
  • test_unicode - test.test_dbm_ndbm.DbmTestCase
  • test_modes - test.test_dbm_ndbm.DbmTestCase
  • test_nonexisting_file - test.test_dbm_ndbm.DbmTestCase
  • test_context_manager - test.test_dbm_ndbm.DbmTestCase
  • test_bytes - test.test_dbm_ndbm.DbmTestCase

Summary of the results of the build (if available):

== Tests result: FAILURE then FAILURE ==

409 tests OK.

10 slowest tests:

  • test_peg_generator: 6 min 16 sec
  • test_mailbox: 3 min 35 sec
  • test_concurrent_futures: 2 min 53 sec
  • test_gdb: 2 min 15 sec
  • test_multiprocessing_spawn: 1 min 32 sec
  • test_compileall: 1 min 12 sec
  • test_shelve: 1 min 7 sec
  • test_multiprocessing_forkserver: 1 min 7 sec
  • test_largefile: 1 min 5 sec
  • test_asyncio: 1 min 4 sec

1 test failed:
test_dbm_ndbm

13 tests skipped:
test_devpoll test_ioctl test_kqueue test_msilib test_ossaudiodev
test_startfile test_tix test_tk test_ttk_guionly test_winconsoleio
test_winreg test_winsound test_zipfile64

1 re-run test:
test_dbm_ndbm

Total duration: 6 min 21 sec

Click to see traceback logs
Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.x.cstratak-RHEL8-x86_64.lto/build/Lib/test/test_dbm_ndbm.py", line 68, in test_context_manager
    self.assertEqual(list(db.keys()), [b"ndbm context manager"])
AssertionError: Lists differ: [b'bytes key \xbd', b'ndbm context manager'] != [b'ndbm context manager']


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.x.cstratak-RHEL8-x86_64.lto/build/Lib/test/test_dbm_ndbm.py", line 111, in test_nonascii_filename
    self.addCleanup(support.unlink, filename + suffix)
AttributeError: module 'test.support' has no attribute 'unlink'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.x.cstratak-RHEL8-x86_64.lto/build/Lib/test/test_dbm_ndbm.py", line 19, in tearDown
    support.unlink(self.filename + suffix)
AttributeError: module 'test.support' has no attribute 'unlink'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.x.cstratak-RHEL8-x86_64.lto/build/Lib/test/test_dbm_ndbm.py", line 23, in test_keys
    self.assertEqual(self.d.keys(), [])
AssertionError: Lists differ: [b'bytes key \xbd', b'ndbm context manager'] != []


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.x.cstratak-RHEL8-x86_64.lto/build/Lib/test/test_dbm_ndbm.py", line 46, in test_empty_value
    self.assertEqual(self.d.keys(), [])
AssertionError: Lists differ: [b'bytes key \xbd', b'ndbm context manager'] != []

@bedevere-bot
Copy link

⚠️⚠️⚠️ Buildbot failure ⚠️⚠️⚠️

Hi! The buildbot PPC64LE RHEL8 3.x has failed when building commit d94af3f.

What do you need to do:

  1. Don't panic.
  2. Check the buildbot page in the devguide if you don't know what the buildbots are or how they work.
  3. Go to the page of the buildbot that failed (https://buildbot.python.org/all/#builders/374/builds/802) and take a look at the build logs.
  4. Check if the failure is related to this commit (d94af3f) or if it is a false positive.
  5. If the failure is related to this commit, please, reflect that on the issue and make a new Pull Request with a fix.

You can take a look at the buildbot page here:

https://buildbot.python.org/all/#builders/374/builds/802

Failed tests:

  • test_dbm_ndbm

Failed subtests:

  • test_keys - test.test_dbm_ndbm.DbmTestCase
  • test_nonascii_filename - test.test_dbm_ndbm.DbmTestCase
  • test_empty_value - test.test_dbm_ndbm.DbmTestCase
  • test_write_readonly_file - test.test_dbm_ndbm.DbmTestCase
  • test_unicode - test.test_dbm_ndbm.DbmTestCase
  • test_modes - test.test_dbm_ndbm.DbmTestCase
  • test_nonexisting_file - test.test_dbm_ndbm.DbmTestCase
  • test_context_manager - test.test_dbm_ndbm.DbmTestCase
  • test_bytes - test.test_dbm_ndbm.DbmTestCase

Summary of the results of the build (if available):

== Tests result: FAILURE then FAILURE ==

409 tests OK.

10 slowest tests:

  • test_unparse: 4 min 27 sec
  • test_concurrent_futures: 3 min 50 sec
  • test_gdb: 3 min 37 sec
  • test_capi: 3 min 9 sec
  • test_peg_generator: 3 min 8 sec
  • test_tokenize: 2 min 17 sec
  • test_multiprocessing_spawn: 2 min 12 sec
  • test_multiprocessing_forkserver: 2 min 9 sec
  • test_unicodedata: 1 min 58 sec
  • test_pickle: 1 min 56 sec

1 test failed:
test_dbm_ndbm

13 tests skipped:
test_devpoll test_ioctl test_kqueue test_msilib test_ossaudiodev
test_startfile test_tix test_tk test_ttk_guionly test_winconsoleio
test_winreg test_winsound test_zipfile64

1 re-run test:
test_dbm_ndbm

Total duration: 8 min 21 sec

Click to see traceback logs
Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.x.cstratak-RHEL8-ppc64le/build/Lib/test/test_dbm_ndbm.py", line 46, in test_empty_value
    self.assertEqual(self.d.keys(), [])
AssertionError: Lists differ: [b'ndbm context manager', b'bytes key \xbd'] != []


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.x.cstratak-RHEL8-ppc64le/build/Lib/test/test_dbm_ndbm.py", line 19, in tearDown
    support.unlink(self.filename + suffix)
AttributeError: module 'test.support' has no attribute 'unlink'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.x.cstratak-RHEL8-ppc64le/build/Lib/test/test_dbm_ndbm.py", line 23, in test_keys
    self.assertEqual(self.d.keys(), [])
AssertionError: Lists differ: [b'ndbm context manager', b'bytes key \xbd'] != []


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.x.cstratak-RHEL8-ppc64le/build/Lib/test/test_dbm_ndbm.py", line 111, in test_nonascii_filename
    self.addCleanup(support.unlink, filename + suffix)
AttributeError: module 'test.support' has no attribute 'unlink'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.x.cstratak-RHEL8-ppc64le/build/Lib/test/test_dbm_ndbm.py", line 68, in test_context_manager
    self.assertEqual(list(db.keys()), [b"ndbm context manager"])
AssertionError: Lists differ: [b'ndbm context manager', b'bytes key \xbd'] != [b'ndbm context manager']

@bedevere-bot
Copy link

⚠️⚠️⚠️ Buildbot failure ⚠️⚠️⚠️

Hi! The buildbot aarch64 Fedora Stable 3.x has failed when building commit d94af3f.

What do you need to do:

  1. Don't panic.
  2. Check the buildbot page in the devguide if you don't know what the buildbots are or how they work.
  3. Go to the page of the buildbot that failed (https://buildbot.python.org/all/#builders/567/builds/767) and take a look at the build logs.
  4. Check if the failure is related to this commit (d94af3f) or if it is a false positive.
  5. If the failure is related to this commit, please, reflect that on the issue and make a new Pull Request with a fix.

You can take a look at the buildbot page here:

https://buildbot.python.org/all/#builders/567/builds/767

Failed tests:

  • test_dbm_ndbm

Failed subtests:

  • test_keys - test.test_dbm_ndbm.DbmTestCase
  • test_nonascii_filename - test.test_dbm_ndbm.DbmTestCase
  • test_empty_value - test.test_dbm_ndbm.DbmTestCase
  • test_write_readonly_file - test.test_dbm_ndbm.DbmTestCase
  • test_unicode - test.test_dbm_ndbm.DbmTestCase
  • test_modes - test.test_dbm_ndbm.DbmTestCase
  • test_nonexisting_file - test.test_dbm_ndbm.DbmTestCase
  • test_context_manager - test.test_dbm_ndbm.DbmTestCase
  • test_bytes - test.test_dbm_ndbm.DbmTestCase

Summary of the results of the build (if available):

== Tests result: FAILURE then FAILURE ==

409 tests OK.

10 slowest tests:

  • test_concurrent_futures: 5 min 18 sec
  • test_peg_generator: 4 min 5 sec
  • test_unparse: 3 min 32 sec
  • test_multiprocessing_spawn: 3 min 9 sec
  • test_tokenize: 3 min 4 sec
  • test_capi: 2 min 47 sec
  • test_asyncio: 2 min 41 sec
  • test_lib2to3: 2 min 19 sec
  • test_multiprocessing_forkserver: 2 min 3 sec
  • test_gdb: 1 min 55 sec

1 test failed:
test_dbm_ndbm

13 tests skipped:
test_devpoll test_ioctl test_kqueue test_msilib test_ossaudiodev
test_startfile test_tix test_tk test_ttk_guionly test_winconsoleio
test_winreg test_winsound test_zipfile64

1 re-run test:
test_dbm_ndbm

Total duration: 8 min 13 sec

Click to see traceback logs
Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-aarch64/build/Lib/test/test_dbm_ndbm.py", line 23, in test_keys
    self.assertEqual(self.d.keys(), [])
AssertionError: Lists differ: [b'ndbm context manager', b'bytes key \xbd'] != []


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-aarch64/build/Lib/test/test_dbm_ndbm.py", line 111, in test_nonascii_filename
    self.addCleanup(support.unlink, filename + suffix)
AttributeError: module 'test.support' has no attribute 'unlink'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-aarch64/build/Lib/test/test_dbm_ndbm.py", line 46, in test_empty_value
    self.assertEqual(self.d.keys(), [])
AssertionError: Lists differ: [b'ndbm context manager', b'bytes key \xbd'] != []


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-aarch64/build/Lib/test/test_dbm_ndbm.py", line 68, in test_context_manager
    self.assertEqual(list(db.keys()), [b"ndbm context manager"])
AssertionError: Lists differ: [b'ndbm context manager', b'bytes key \xbd'] != [b'ndbm context manager']


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-aarch64/build/Lib/test/test_dbm_ndbm.py", line 19, in tearDown
    support.unlink(self.filename + suffix)
AttributeError: module 'test.support' has no attribute 'unlink'

@bedevere-bot
Copy link

⚠️⚠️⚠️ Buildbot failure ⚠️⚠️⚠️

Hi! The buildbot aarch64 RHEL7 3.x has failed when building commit d94af3f.

What do you need to do:

  1. Don't panic.
  2. Check the buildbot page in the devguide if you don't know what the buildbots are or how they work.
  3. Go to the page of the buildbot that failed (https://buildbot.python.org/all/#builders/568/builds/932) and take a look at the build logs.
  4. Check if the failure is related to this commit (d94af3f) or if it is a false positive.
  5. If the failure is related to this commit, please, reflect that on the issue and make a new Pull Request with a fix.

You can take a look at the buildbot page here:

https://buildbot.python.org/all/#builders/568/builds/932

Failed tests:

  • test_dbm_ndbm

Failed subtests:

  • test_keys - test.test_dbm_ndbm.DbmTestCase
  • test_nonascii_filename - test.test_dbm_ndbm.DbmTestCase
  • test_empty_value - test.test_dbm_ndbm.DbmTestCase
  • test_write_readonly_file - test.test_dbm_ndbm.DbmTestCase
  • test_unicode - test.test_dbm_ndbm.DbmTestCase
  • test_modes - test.test_dbm_ndbm.DbmTestCase
  • test_nonexisting_file - test.test_dbm_ndbm.DbmTestCase
  • test_context_manager - test.test_dbm_ndbm.DbmTestCase
  • test_bytes - test.test_dbm_ndbm.DbmTestCase

Summary of the results of the build (if available):

== Tests result: FAILURE then FAILURE ==

408 tests OK.

10 slowest tests:

  • test_unparse: 4 min 36 sec
  • test_tokenize: 3 min 40 sec
  • test_concurrent_futures: 3 min 23 sec
  • test_capi: 3 min 17 sec
  • test_peg_generator: 3 min 13 sec
  • test_asyncio: 2 min 52 sec
  • test_multiprocessing_spawn: 2 min 52 sec
  • test_lib2to3: 2 min 37 sec
  • test_multiprocessing_forkserver: 1 min 57 sec
  • test_unicodedata: 1 min 43 sec

1 test failed:
test_dbm_ndbm

14 tests skipped:
test_devpoll test_gdb test_ioctl test_kqueue test_msilib
test_ossaudiodev test_startfile test_tix test_tk test_ttk_guionly
test_winconsoleio test_winreg test_winsound test_zipfile64

1 re-run test:
test_dbm_ndbm

Total duration: 8 min 50 sec

Click to see traceback logs
Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-aarch64/build/Lib/test/test_dbm_ndbm.py", line 46, in test_empty_value
    self.assertEqual(self.d.keys(), [])
AssertionError: Lists differ: [b'ndbm context manager', b'bytes key \xbd'] != []


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-aarch64/build/Lib/test/test_dbm_ndbm.py", line 19, in tearDown
    support.unlink(self.filename + suffix)
AttributeError: module 'test.support' has no attribute 'unlink'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-aarch64/build/Lib/test/test_dbm_ndbm.py", line 111, in test_nonascii_filename
    self.addCleanup(support.unlink, filename + suffix)
AttributeError: module 'test.support' has no attribute 'unlink'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-aarch64/build/Lib/test/test_dbm_ndbm.py", line 68, in test_context_manager
    self.assertEqual(list(db.keys()), [b"ndbm context manager"])
AssertionError: Lists differ: [b'ndbm context manager', b'bytes key \xbd'] != [b'ndbm context manager']


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-aarch64/build/Lib/test/test_dbm_ndbm.py", line 23, in test_keys
    self.assertEqual(self.d.keys(), [])
AssertionError: Lists differ: [b'ndbm context manager', b'bytes key \xbd'] != []

@bedevere-bot
Copy link

⚠️⚠️⚠️ Buildbot failure ⚠️⚠️⚠️

Hi! The buildbot PPC64LE RHEL7 3.x has failed when building commit d94af3f.

What do you need to do:

  1. Don't panic.
  2. Check the buildbot page in the devguide if you don't know what the buildbots are or how they work.
  3. Go to the page of the buildbot that failed (https://buildbot.python.org/all/#builders/347/builds/1013) and take a look at the build logs.
  4. Check if the failure is related to this commit (d94af3f) or if it is a false positive.
  5. If the failure is related to this commit, please, reflect that on the issue and make a new Pull Request with a fix.

You can take a look at the buildbot page here:

https://buildbot.python.org/all/#builders/347/builds/1013

Failed tests:

  • test_dbm_ndbm
  • test_concurrent_futures

Failed subtests:

  • test_keys - test.test_dbm_ndbm.DbmTestCase
  • test_nonascii_filename - test.test_dbm_ndbm.DbmTestCase
  • test_empty_value - test.test_dbm_ndbm.DbmTestCase
  • test_write_readonly_file - test.test_dbm_ndbm.DbmTestCase
  • test_unicode - test.test_dbm_ndbm.DbmTestCase
  • test_modes - test.test_dbm_ndbm.DbmTestCase
  • test_nonexisting_file - test.test_dbm_ndbm.DbmTestCase
  • test_first_exception - test.test_concurrent_futures.ProcessPoolForkserverWaitTest
  • test_context_manager - test.test_dbm_ndbm.DbmTestCase
  • test_bytes - test.test_dbm_ndbm.DbmTestCase

Summary of the results of the build (if available):

== Tests result: FAILURE then FAILURE ==

409 tests OK.

10 slowest tests:

  • test_unparse: 4 min 41 sec
  • test_concurrent_futures: 4 min 36 sec
  • test_tokenize: 4 min 20 sec
  • test_peg_generator: 3 min 21 sec
  • test_lib2to3: 3 min 4 sec
  • test_capi: 2 min 52 sec
  • test_multiprocessing_forkserver: 2 min 3 sec
  • test_unicodedata: 1 min 49 sec
  • test_pickle: 1 min 48 sec
  • test_multiprocessing_spawn: 1 min 46 sec

1 test failed:
test_dbm_ndbm

13 tests skipped:
test_devpoll test_ioctl test_kqueue test_msilib test_ossaudiodev
test_startfile test_tix test_tk test_ttk_guionly test_winconsoleio
test_winreg test_winsound test_zipfile64

2 re-run tests:
test_concurrent_futures test_dbm_ndbm

Total duration: 10 min 40 sec

Click to see traceback logs
Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-ppc64le/build/Lib/test/test_dbm_ndbm.py", line 23, in test_keys
    self.assertEqual(self.d.keys(), [])
AssertionError: Lists differ: [b'ndbm context manager', b'bytes key \xbd'] != []


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-ppc64le/build/Lib/test/test_concurrent_futures.py", line 599, in test_first_exception
    self.assertEqual(set([future1, future2]), finished)
AssertionError: Items in the first set but not the second:
<Future at 0x3fff6e2333c0 state=running>


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-ppc64le/build/Lib/test/test_dbm_ndbm.py", line 46, in test_empty_value
    self.assertEqual(self.d.keys(), [])
AssertionError: Lists differ: [b'ndbm context manager', b'bytes key \xbd'] != []


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-ppc64le/build/Lib/test/test_dbm_ndbm.py", line 19, in tearDown
    support.unlink(self.filename + suffix)
AttributeError: module 'test.support' has no attribute 'unlink'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-ppc64le/build/Lib/test/test_dbm_ndbm.py", line 68, in test_context_manager
    self.assertEqual(list(db.keys()), [b"ndbm context manager"])
AssertionError: Lists differ: [b'ndbm context manager', b'bytes key \xbd'] != [b'ndbm context manager']


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-ppc64le/build/Lib/test/test_dbm_ndbm.py", line 111, in test_nonascii_filename
    self.addCleanup(support.unlink, filename + suffix)
AttributeError: module 'test.support' has no attribute 'unlink'

@bedevere-bot
Copy link

⚠️⚠️⚠️ Buildbot failure ⚠️⚠️⚠️

Hi! The buildbot AMD64 Arch Linux TraceRefs 3.x has failed when building commit d94af3f.

What do you need to do:

  1. Don't panic.
  2. Check the buildbot page in the devguide if you don't know what the buildbots are or how they work.
  3. Go to the page of the buildbot that failed (https://buildbot.python.org/all/#builders/312/builds/1181) and take a look at the build logs.
  4. Check if the failure is related to this commit (d94af3f) or if it is a false positive.
  5. If the failure is related to this commit, please, reflect that on the issue and make a new Pull Request with a fix.

You can take a look at the buildbot page here:

https://buildbot.python.org/all/#builders/312/builds/1181

Failed tests:

  • test_dbm_ndbm

Failed subtests:

  • test_keys - test.test_dbm_ndbm.DbmTestCase
  • test_nonascii_filename - test.test_dbm_ndbm.DbmTestCase
  • test_empty_value - test.test_dbm_ndbm.DbmTestCase
  • test_write_readonly_file - test.test_dbm_ndbm.DbmTestCase
  • test_unicode - test.test_dbm_ndbm.DbmTestCase
  • test_modes - test.test_dbm_ndbm.DbmTestCase
  • test_nonexisting_file - test.test_dbm_ndbm.DbmTestCase
  • test_context_manager - test.test_dbm_ndbm.DbmTestCase
  • test_bytes - test.test_dbm_ndbm.DbmTestCase

Summary of the results of the build (if available):

== Tests result: FAILURE then FAILURE ==

409 tests OK.

10 slowest tests:

  • test_concurrent_futures: 2 min 42 sec
  • test_multiprocessing_spawn: 1 min 18 sec
  • test_subprocess: 1 min 15 sec
  • test_tokenize: 1 min 8 sec
  • test_peg_generator: 1 min 5 sec
  • test_unparse: 1 min 5 sec
  • test_multiprocessing_forkserver: 1 min 3 sec
  • test_asyncio: 1 min 2 sec
  • test_capi: 56.8 sec
  • test_multiprocessing_fork: 54.1 sec

1 test failed:
test_dbm_ndbm

13 tests skipped:
test_devpoll test_ioctl test_kqueue test_msilib test_ossaudiodev
test_startfile test_tix test_tk test_ttk_guionly test_winconsoleio
test_winreg test_winsound test_zipfile64

1 re-run test:
test_dbm_ndbm

Total duration: 14 min 40 sec

Click to see traceback logs
Traceback (most recent call last):
  File "/buildbot/buildarea/3.x.pablogsal-arch-x86_64/build/Lib/test/test_dbm_ndbm.py", line 19, in tearDown
    support.unlink(self.filename + suffix)
AttributeError: module 'test.support' has no attribute 'unlink'


Traceback (most recent call last):
  File "/buildbot/buildarea/3.x.pablogsal-arch-x86_64/build/Lib/test/test_dbm_ndbm.py", line 111, in test_nonascii_filename
    self.addCleanup(support.unlink, filename + suffix)
AttributeError: module 'test.support' has no attribute 'unlink'


Traceback (most recent call last):
  File "/buildbot/buildarea/3.x.pablogsal-arch-x86_64/build/Lib/test/test_dbm_ndbm.py", line 68, in test_context_manager
    self.assertEqual(list(db.keys()), [b"ndbm context manager"])
AssertionError: Lists differ: [b'bytes key \xbd', b'ndbm context manager'] != [b'ndbm context manager']


Traceback (most recent call last):
  File "/buildbot/buildarea/3.x.pablogsal-arch-x86_64/build/Lib/test/test_dbm_ndbm.py", line 46, in test_empty_value
    self.assertEqual(self.d.keys(), [])
AssertionError: Lists differ: [b'bytes key \xbd', b'ndbm context manager'] != []


Traceback (most recent call last):
  File "/buildbot/buildarea/3.x.pablogsal-arch-x86_64/build/Lib/test/test_dbm_ndbm.py", line 23, in test_keys
    self.assertEqual(self.d.keys(), [])
AssertionError: Lists differ: [b'bytes key \xbd', b'ndbm context manager'] != []

@bedevere-bot
Copy link

⚠️⚠️⚠️ Buildbot failure ⚠️⚠️⚠️

Hi! The buildbot AMD64 Fedora Stable Clang 3.x has failed when building commit d94af3f.

What do you need to do:

  1. Don't panic.
  2. Check the buildbot page in the devguide if you don't know what the buildbots are or how they work.
  3. Go to the page of the buildbot that failed (https://buildbot.python.org/all/#builders/226/builds/1196) and take a look at the build logs.
  4. Check if the failure is related to this commit (d94af3f) or if it is a false positive.
  5. If the failure is related to this commit, please, reflect that on the issue and make a new Pull Request with a fix.

You can take a look at the buildbot page here:

https://buildbot.python.org/all/#builders/226/builds/1196

Failed tests:

  • test_dbm_ndbm

Failed subtests:

  • test_keys - test.test_dbm_ndbm.DbmTestCase
  • test_nonascii_filename - test.test_dbm_ndbm.DbmTestCase
  • test_empty_value - test.test_dbm_ndbm.DbmTestCase
  • test_write_readonly_file - test.test_dbm_ndbm.DbmTestCase
  • test_unicode - test.test_dbm_ndbm.DbmTestCase
  • test_modes - test.test_dbm_ndbm.DbmTestCase
  • test_nonexisting_file - test.test_dbm_ndbm.DbmTestCase
  • test_context_manager - test.test_dbm_ndbm.DbmTestCase
  • test_bytes - test.test_dbm_ndbm.DbmTestCase

Summary of the results of the build (if available):

== Tests result: FAILURE then FAILURE ==

409 tests OK.

10 slowest tests:

  • test_mailbox: 3 min 38 sec
  • test_peg_generator: 3 min 35 sec
  • test_shelve: 2 min 58 sec
  • test_concurrent_futures: 2 min 52 sec
  • test_io: 1 min 24 sec
  • test_multiprocessing_spawn: 1 min 21 sec
  • test_unparse: 1 min 16 sec
  • test___all__: 1 min 7 sec
  • test_multiprocessing_forkserver: 1 min 5 sec
  • test_asyncio: 1 min 5 sec

1 test failed:
test_dbm_ndbm

13 tests skipped:
test_devpoll test_ioctl test_kqueue test_msilib test_ossaudiodev
test_startfile test_tix test_tk test_ttk_guionly test_winconsoleio
test_winreg test_winsound test_zipfile64

1 re-run test:
test_dbm_ndbm

Total duration: 6 min 7 sec

Click to see traceback logs
Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_dbm_ndbm.py", line 23, in test_keys
    self.assertEqual(self.d.keys(), [])
AssertionError: Lists differ: [b'bytes key \xbd', b'ndbm context manager'] != []


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_dbm_ndbm.py", line 68, in test_context_manager
    self.assertEqual(list(db.keys()), [b"ndbm context manager"])
AssertionError: Lists differ: [b'bytes key \xbd', b'ndbm context manager'] != [b'ndbm context manager']


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_dbm_ndbm.py", line 46, in test_empty_value
    self.assertEqual(self.d.keys(), [])
AssertionError: Lists differ: [b'bytes key \xbd', b'ndbm context manager'] != []


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_dbm_ndbm.py", line 19, in tearDown
    support.unlink(self.filename + suffix)
AttributeError: module 'test.support' has no attribute 'unlink'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.clang/build/Lib/test/test_dbm_ndbm.py", line 111, in test_nonascii_filename
    self.addCleanup(support.unlink, filename + suffix)
AttributeError: module 'test.support' has no attribute 'unlink'

@bedevere-bot
Copy link

⚠️⚠️⚠️ Buildbot failure ⚠️⚠️⚠️

Hi! The buildbot AMD64 RHEL8 3.x has failed when building commit d94af3f.

What do you need to do:

  1. Don't panic.
  2. Check the buildbot page in the devguide if you don't know what the buildbots are or how they work.
  3. Go to the page of the buildbot that failed (https://buildbot.python.org/all/#builders/89/builds/1153) and take a look at the build logs.
  4. Check if the failure is related to this commit (d94af3f) or if it is a false positive.
  5. If the failure is related to this commit, please, reflect that on the issue and make a new Pull Request with a fix.

You can take a look at the buildbot page here:

https://buildbot.python.org/all/#builders/89/builds/1153

Failed tests:

  • test_dbm_ndbm

Failed subtests:

  • test_keys - test.test_dbm_ndbm.DbmTestCase
  • test_nonascii_filename - test.test_dbm_ndbm.DbmTestCase
  • test_empty_value - test.test_dbm_ndbm.DbmTestCase
  • test_write_readonly_file - test.test_dbm_ndbm.DbmTestCase
  • test_unicode - test.test_dbm_ndbm.DbmTestCase
  • test_modes - test.test_dbm_ndbm.DbmTestCase
  • test_nonexisting_file - test.test_dbm_ndbm.DbmTestCase
  • test_context_manager - test.test_dbm_ndbm.DbmTestCase
  • test_bytes - test.test_dbm_ndbm.DbmTestCase

Summary of the results of the build (if available):

== Tests result: FAILURE then FAILURE ==

409 tests OK.

10 slowest tests:

  • test_concurrent_futures: 3 min 22 sec
  • test_peg_generator: 2 min 51 sec
  • test_shelve: 2 min 48 sec
  • test_mailbox: 2 min 24 sec
  • test_unparse: 2 min 7 sec
  • test_multiprocessing_spawn: 1 min 55 sec
  • test_gdb: 1 min 52 sec
  • test_tokenize: 1 min 35 sec
  • test_asyncio: 1 min 31 sec
  • test_capi: 1 min 28 sec

1 test failed:
test_dbm_ndbm

13 tests skipped:
test_devpoll test_ioctl test_kqueue test_msilib test_ossaudiodev
test_startfile test_tix test_tk test_ttk_guionly test_winconsoleio
test_winreg test_winsound test_zipfile64

1 re-run test:
test_dbm_ndbm

Total duration: 5 min 50 sec

Click to see traceback logs
Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.x.cstratak-RHEL8-x86_64/build/Lib/test/test_dbm_ndbm.py", line 19, in tearDown
    support.unlink(self.filename + suffix)
AttributeError: module 'test.support' has no attribute 'unlink'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.x.cstratak-RHEL8-x86_64/build/Lib/test/test_dbm_ndbm.py", line 46, in test_empty_value
    self.assertEqual(self.d.keys(), [])
AssertionError: Lists differ: [b'bytes key \xbd', b'ndbm context manager'] != []


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.x.cstratak-RHEL8-x86_64/build/Lib/test/test_dbm_ndbm.py", line 68, in test_context_manager
    self.assertEqual(list(db.keys()), [b"ndbm context manager"])
AssertionError: Lists differ: [b'bytes key \xbd', b'ndbm context manager'] != [b'ndbm context manager']


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.x.cstratak-RHEL8-x86_64/build/Lib/test/test_dbm_ndbm.py", line 111, in test_nonascii_filename
    self.addCleanup(support.unlink, filename + suffix)
AttributeError: module 'test.support' has no attribute 'unlink'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.x.cstratak-RHEL8-x86_64/build/Lib/test/test_dbm_ndbm.py", line 23, in test_keys
    self.assertEqual(self.d.keys(), [])
AssertionError: Lists differ: [b'bytes key \xbd', b'ndbm context manager'] != []

@bedevere-bot
Copy link

⚠️⚠️⚠️ Buildbot failure ⚠️⚠️⚠️

Hi! The buildbot AMD64 FreeBSD Shared 3.x has failed when building commit d94af3f.

What do you need to do:

  1. Don't panic.
  2. Check the buildbot page in the devguide if you don't know what the buildbots are or how they work.
  3. Go to the page of the buildbot that failed (https://buildbot.python.org/all/#builders/152/builds/1224) and take a look at the build logs.
  4. Check if the failure is related to this commit (d94af3f) or if it is a false positive.
  5. If the failure is related to this commit, please, reflect that on the issue and make a new Pull Request with a fix.

You can take a look at the buildbot page here:

https://buildbot.python.org/all/#builders/152/builds/1224

Failed tests:

  • test_selectors
  • test_dbm_ndbm

Failed subtests:

  • test_keys - test.test_dbm_ndbm.DbmTestCase
  • test_nonascii_filename - test.test_dbm_ndbm.DbmTestCase
  • test_empty_value - test.test_dbm_ndbm.DbmTestCase
  • test_write_readonly_file - test.test_dbm_ndbm.DbmTestCase
  • test_unicode - test.test_dbm_ndbm.DbmTestCase
  • test_modes - test.test_dbm_ndbm.DbmTestCase
  • test_nonexisting_file - test.test_dbm_ndbm.DbmTestCase
  • test_register_bad_fd - test.test_selectors.KqueueSelectorTestCase
  • test_context_manager - test.test_dbm_ndbm.DbmTestCase
  • test_bytes - test.test_dbm_ndbm.DbmTestCase

Summary of the results of the build (if available):

== Tests result: FAILURE then FAILURE ==

401 tests OK.

10 slowest tests:

  • test_concurrent_futures: 4 min 14 sec
  • test_multiprocessing_spawn: 2 min 47 sec
  • test_tokenize: 2 min 44 sec
  • test_asyncio: 2 min 9 sec
  • test_multiprocessing_forkserver: 2 min 2 sec
  • test_multiprocessing_fork: 1 min 50 sec
  • test_peg_generator: 1 min 48 sec
  • test_subprocess: 1 min 36 sec
  • test_regrtest: 1 min 34 sec
  • test_capi: 1 min 32 sec

2 tests failed:
test_dbm_ndbm test_selectors

20 tests skipped:
test_dbm_gnu test_devpoll test_epoll test_gdb test_idle test_ioctl
test_msilib test_ossaudiodev test_spwd test_startfile test_tcl
test_tix test_tk test_ttk_guionly test_ttk_textonly test_turtle
test_winconsoleio test_winreg test_winsound test_zipfile64

2 re-run tests:
test_dbm_ndbm test_selectors

Total duration: 14 min 41 sec

Click to see traceback logs
Traceback (most recent call last):
  File "/usr/home/buildbot/python/3.x.koobs-freebsd-564d/build/Lib/test/test_dbm_ndbm.py", line 68, in test_context_manager
    self.assertEqual(list(db.keys()), [b"ndbm context manager"])
AssertionError: Lists differ: [b'bytes key \xbd', b'ndbm context manager'] != [b'ndbm context manager']


Traceback (most recent call last):
  File "/usr/home/buildbot/python/3.x.koobs-freebsd-564d/build/Lib/test/test_dbm_ndbm.py", line 19, in tearDown
    support.unlink(self.filename + suffix)
AttributeError: module 'test.support' has no attribute 'unlink'


Traceback (most recent call last):
  File "/usr/home/buildbot/python/3.x.koobs-freebsd-564d/build/Lib/test/test_dbm_ndbm.py", line 111, in test_nonascii_filename
    self.addCleanup(support.unlink, filename + suffix)
AttributeError: module 'test.support' has no attribute 'unlink'


Traceback (most recent call last):
  File "/usr/home/buildbot/python/3.x.koobs-freebsd-564d/build/Lib/test/test_dbm_ndbm.py", line 46, in test_empty_value
    self.assertEqual(self.d.keys(), [])
AssertionError: Lists differ: [b'bytes key \xbd', b'ndbm context manager'] != []


Traceback (most recent call last):
  File "/usr/home/buildbot/python/3.x.koobs-freebsd-564d/build/Lib/test/test_dbm_ndbm.py", line 23, in test_keys
    self.assertEqual(self.d.keys(), [])
AssertionError: Lists differ: [b'bytes key \xbd', b'ndbm context manager'] != []


Traceback (most recent call last):
  File "/usr/home/buildbot/python/3.x.koobs-freebsd-564d/build/Lib/test/test_selectors.py", line 539, in test_register_bad_fd
    bad_f = support.make_bad_fd()
AttributeError: module 'test.support' has no attribute 'make_bad_fd'

@bedevere-bot
Copy link

⚠️⚠️⚠️ Buildbot failure ⚠️⚠️⚠️

Hi! The buildbot AMD64 RHEL7 LTO + PGO 3.x has failed when building commit d94af3f.

What do you need to do:

  1. Don't panic.
  2. Check the buildbot page in the devguide if you don't know what the buildbots are or how they work.
  3. Go to the page of the buildbot that failed (https://buildbot.python.org/all/#builders/196/builds/1242) and take a look at the build logs.
  4. Check if the failure is related to this commit (d94af3f) or if it is a false positive.
  5. If the failure is related to this commit, please, reflect that on the issue and make a new Pull Request with a fix.

You can take a look at the buildbot page here:

https://buildbot.python.org/all/#builders/196/builds/1242

Failed tests:

  • test_dbm_ndbm

Failed subtests:

  • test_keys - test.test_dbm_ndbm.DbmTestCase
  • test_nonascii_filename - test.test_dbm_ndbm.DbmTestCase
  • test_empty_value - test.test_dbm_ndbm.DbmTestCase
  • test_write_readonly_file - test.test_dbm_ndbm.DbmTestCase
  • test_unicode - test.test_dbm_ndbm.DbmTestCase
  • test_modes - test.test_dbm_ndbm.DbmTestCase
  • test_nonexisting_file - test.test_dbm_ndbm.DbmTestCase
  • test_context_manager - test.test_dbm_ndbm.DbmTestCase
  • test_bytes - test.test_dbm_ndbm.DbmTestCase

Summary of the results of the build (if available):

== Tests result: FAILURE then FAILURE ==

408 tests OK.

10 slowest tests:

  • test_peg_generator: 4 min 21 sec
  • test_concurrent_futures: 2 min 55 sec
  • test_tokenize: 2 min 6 sec
  • test_unparse: 1 min 48 sec
  • test_mailbox: 1 min 43 sec
  • test_multiprocessing_spawn: 1 min 37 sec
  • test_asyncio: 1 min 29 sec
  • test_nntplib: 1 min 21 sec
  • test_multiprocessing_forkserver: 1 min 17 sec
  • test_lib2to3: 1 min 14 sec

1 test failed:
test_dbm_ndbm

14 tests skipped:
test_devpoll test_gdb test_ioctl test_kqueue test_msilib
test_ossaudiodev test_startfile test_tix test_tk test_ttk_guionly
test_winconsoleio test_winreg test_winsound test_zipfile64

1 re-run test:
test_dbm_ndbm

Total duration: 6 min 24 sec

Click to see traceback logs
Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-x86_64.lto-pgo/build/Lib/test/test_dbm_ndbm.py", line 111, in test_nonascii_filename
    self.addCleanup(support.unlink, filename + suffix)
AttributeError: module 'test.support' has no attribute 'unlink'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-x86_64.lto-pgo/build/Lib/test/test_dbm_ndbm.py", line 23, in test_keys
    self.assertEqual(self.d.keys(), [])
AssertionError: Lists differ: [b'bytes key \xbd', b'ndbm context manager'] != []


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-x86_64.lto-pgo/build/Lib/test/test_dbm_ndbm.py", line 19, in tearDown
    support.unlink(self.filename + suffix)
AttributeError: module 'test.support' has no attribute 'unlink'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-x86_64.lto-pgo/build/Lib/test/test_dbm_ndbm.py", line 68, in test_context_manager
    self.assertEqual(list(db.keys()), [b"ndbm context manager"])
AssertionError: Lists differ: [b'bytes key \xbd', b'ndbm context manager'] != [b'ndbm context manager']


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-x86_64.lto-pgo/build/Lib/test/test_dbm_ndbm.py", line 46, in test_empty_value
    self.assertEqual(self.d.keys(), [])
AssertionError: Lists differ: [b'bytes key \xbd', b'ndbm context manager'] != []

@bedevere-bot
Copy link

⚠️⚠️⚠️ Buildbot failure ⚠️⚠️⚠️

Hi! The buildbot s390x RHEL8 LTO + PGO 3.x has failed when building commit d94af3f.

What do you need to do:

  1. Don't panic.
  2. Check the buildbot page in the devguide if you don't know what the buildbots are or how they work.
  3. Go to the page of the buildbot that failed (https://buildbot.python.org/all/#builders/498/builds/937) and take a look at the build logs.
  4. Check if the failure is related to this commit (d94af3f) or if it is a false positive.
  5. If the failure is related to this commit, please, reflect that on the issue and make a new Pull Request with a fix.

You can take a look at the buildbot page here:

https://buildbot.python.org/all/#builders/498/builds/937

Failed tests:

  • test_dbm_ndbm

Failed subtests:

  • test_keys - test.test_dbm_ndbm.DbmTestCase
  • test_nonascii_filename - test.test_dbm_ndbm.DbmTestCase
  • test_empty_value - test.test_dbm_ndbm.DbmTestCase
  • test_write_readonly_file - test.test_dbm_ndbm.DbmTestCase
  • test_unicode - test.test_dbm_ndbm.DbmTestCase
  • test_modes - test.test_dbm_ndbm.DbmTestCase
  • test_nonexisting_file - test.test_dbm_ndbm.DbmTestCase
  • test_context_manager - test.test_dbm_ndbm.DbmTestCase
  • test_bytes - test.test_dbm_ndbm.DbmTestCase

Summary of the results of the build (if available):

== Tests result: FAILURE then FAILURE ==

407 tests OK.

10 slowest tests:

  • test_peg_generator: 4 min
  • test_concurrent_futures: 2 min 49 sec
  • test_multiprocessing_spawn: 1 min 7 sec
  • test_multiprocessing_forkserver: 59.7 sec
  • test_multiprocessing_fork: 53.8 sec
  • test_signal: 47.1 sec
  • test_asyncio: 45.7 sec
  • test_io: 35.6 sec
  • test_imaplib: 32.9 sec
  • test_pydoc: 31.1 sec

1 test failed:
test_dbm_ndbm

15 tests skipped:
test_devpoll test_gdb test_ioctl test_kqueue test_msilib test_nis
test_ossaudiodev test_startfile test_tix test_tk test_ttk_guionly
test_winconsoleio test_winreg test_winsound test_zipfile64

1 re-run test:
test_dbm_ndbm

Total duration: 4 min 55 sec

Click to see traceback logs
Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.x.edelsohn-rhel8-z.lto-pgo/build/Lib/test/test_dbm_ndbm.py", line 68, in test_context_manager
    self.assertEqual(list(db.keys()), [b"ndbm context manager"])
AssertionError: Lists differ: [b'ndbm context manager', b'bytes key \xbd'] != [b'ndbm context manager']


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.x.edelsohn-rhel8-z.lto-pgo/build/Lib/test/test_dbm_ndbm.py", line 19, in tearDown
    support.unlink(self.filename + suffix)
AttributeError: module 'test.support' has no attribute 'unlink'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.x.edelsohn-rhel8-z.lto-pgo/build/Lib/test/test_dbm_ndbm.py", line 46, in test_empty_value
    self.assertEqual(self.d.keys(), [])
AssertionError: Lists differ: [b'ndbm context manager', b'bytes key \xbd'] != []


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.x.edelsohn-rhel8-z.lto-pgo/build/Lib/test/test_dbm_ndbm.py", line 111, in test_nonascii_filename
    self.addCleanup(support.unlink, filename + suffix)
AttributeError: module 'test.support' has no attribute 'unlink'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.x.edelsohn-rhel8-z.lto-pgo/build/Lib/test/test_dbm_ndbm.py", line 23, in test_keys
    self.assertEqual(self.d.keys(), [])
AssertionError: Lists differ: [b'ndbm context manager', b'bytes key \xbd'] != []

@bedevere-bot
Copy link

⚠️⚠️⚠️ Buildbot failure ⚠️⚠️⚠️

Hi! The buildbot AMD64 Debian PGO 3.x has failed when building commit d94af3f.

What do you need to do:

  1. Don't panic.
  2. Check the buildbot page in the devguide if you don't know what the buildbots are or how they work.
  3. Go to the page of the buildbot that failed (https://buildbot.python.org/all/#builders/38/builds/1492) and take a look at the build logs.
  4. Check if the failure is related to this commit (d94af3f) or if it is a false positive.
  5. If the failure is related to this commit, please, reflect that on the issue and make a new Pull Request with a fix.

You can take a look at the buildbot page here:

https://buildbot.python.org/all/#builders/38/builds/1492

Failed tests:

  • test_dbm_ndbm

Failed subtests:

  • test_keys - test.test_dbm_ndbm.DbmTestCase
  • test_nonascii_filename - test.test_dbm_ndbm.DbmTestCase
  • test_empty_value - test.test_dbm_ndbm.DbmTestCase
  • test_write_readonly_file - test.test_dbm_ndbm.DbmTestCase
  • test_unicode - test.test_dbm_ndbm.DbmTestCase
  • test_modes - test.test_dbm_ndbm.DbmTestCase
  • test_nonexisting_file - test.test_dbm_ndbm.DbmTestCase
  • test_context_manager - test.test_dbm_ndbm.DbmTestCase
  • test_bytes - test.test_dbm_ndbm.DbmTestCase

Summary of the results of the build (if available):

== Tests result: FAILURE then FAILURE ==

408 tests OK.

10 slowest tests:

  • test_peg_generator: 3 min 12 sec
  • test_concurrent_futures: 2 min 56 sec
  • test_multiprocessing_spawn: 1 min 16 sec
  • test_multiprocessing_forkserver: 1 min 4 sec
  • test_multiprocessing_fork: 54.0 sec
  • test_unparse: 50.7 sec
  • test_asyncio: 47.8 sec
  • test_signal: 46.5 sec
  • test_zipfile: 44.5 sec
  • test_largefile: 43.4 sec

1 test failed:
test_dbm_ndbm

14 tests skipped:
test_devpoll test_gdb test_ioctl test_kqueue test_msilib
test_ossaudiodev test_startfile test_tix test_tk test_ttk_guionly
test_winconsoleio test_winreg test_winsound test_zipfile64

1 re-run test:
test_dbm_ndbm

Total duration: 12 min 43 sec

Click to see traceback logs
Traceback (most recent call last):
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_dbm_ndbm.py", line 111, in test_nonascii_filename
    self.addCleanup(support.unlink, filename + suffix)
AttributeError: module 'test.support' has no attribute 'unlink'


Traceback (most recent call last):
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_dbm_ndbm.py", line 23, in test_keys
    self.assertEqual(self.d.keys(), [])
AssertionError: Lists differ: [b'bytes key \xbd', b'ndbm context manager'] != []


Traceback (most recent call last):
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_dbm_ndbm.py", line 19, in tearDown
    support.unlink(self.filename + suffix)
AttributeError: module 'test.support' has no attribute 'unlink'


Traceback (most recent call last):
  File "/var/lib/buildbot/workers/enable-optimizations-bot/3.x.gps-debian-profile-opt.pgo/build/Lib/test/test_dbm_ndbm.py", line 68, in test_context_manager
    self.assertEqual(list(db.keys()), [b"ndbm context manager"])
AssertionError: Lists differ: [b'bytes key \xbd', b'ndbm context manager'] != [b'ndbm context manager']

@bedevere-bot
Copy link

⚠️⚠️⚠️ Buildbot failure ⚠️⚠️⚠️

Hi! The buildbot PPC64 Fedora 3.x has failed when building commit d94af3f.

What do you need to do:

  1. Don't panic.
  2. Check the buildbot page in the devguide if you don't know what the buildbots are or how they work.
  3. Go to the page of the buildbot that failed (https://buildbot.python.org/all/#builders/8/builds/1478) and take a look at the build logs.
  4. Check if the failure is related to this commit (d94af3f) or if it is a false positive.
  5. If the failure is related to this commit, please, reflect that on the issue and make a new Pull Request with a fix.

You can take a look at the buildbot page here:

https://buildbot.python.org/all/#builders/8/builds/1478

Failed tests:

  • test_dbm_ndbm

Failed subtests:

  • test_keys - test.test_dbm_ndbm.DbmTestCase
  • test_nonascii_filename - test.test_dbm_ndbm.DbmTestCase
  • test_empty_value - test.test_dbm_ndbm.DbmTestCase
  • test_write_readonly_file - test.test_dbm_ndbm.DbmTestCase
  • test_unicode - test.test_dbm_ndbm.DbmTestCase
  • test_modes - test.test_dbm_ndbm.DbmTestCase
  • test_nonexisting_file - test.test_dbm_ndbm.DbmTestCase
  • test_context_manager - test.test_dbm_ndbm.DbmTestCase
  • test_bytes - test.test_dbm_ndbm.DbmTestCase

Summary of the results of the build (if available):

== Tests result: FAILURE then FAILURE ==

409 tests OK.

10 slowest tests:

  • test_concurrent_futures: 3 min
  • test_unparse: 2 min 51 sec
  • test_tokenize: 2 min 44 sec
  • test_capi: 2 min 16 sec
  • test_peg_generator: 2 min
  • test_multiprocessing_spawn: 1 min 52 sec
  • test_lib2to3: 1 min 42 sec
  • test_asyncio: 1 min 37 sec
  • test_unicodedata: 1 min 18 sec
  • test_multiprocessing_forkserver: 1 min 14 sec

1 test failed:
test_dbm_ndbm

13 tests skipped:
test_devpoll test_ioctl test_kqueue test_msilib test_ossaudiodev
test_startfile test_tix test_tk test_ttk_guionly test_winconsoleio
test_winreg test_winsound test_zipfile64

1 re-run test:
test_dbm_ndbm

Total duration: 24 min 12 sec

Click to see traceback logs
Traceback (most recent call last):
  File "/home/shager/cpython-buildarea/3.x.edelsohn-fedora-ppc64/build/Lib/test/test_dbm_ndbm.py", line 68, in test_context_manager
    self.assertEqual(list(db.keys()), [b"ndbm context manager"])
AssertionError: Lists differ: [b'ndbm context manager', b'bytes key \xbd'] != [b'ndbm context manager']


Traceback (most recent call last):
  File "/home/shager/cpython-buildarea/3.x.edelsohn-fedora-ppc64/build/Lib/test/test_dbm_ndbm.py", line 19, in tearDown
    support.unlink(self.filename + suffix)
AttributeError: module 'test.support' has no attribute 'unlink'


Traceback (most recent call last):
  File "/home/shager/cpython-buildarea/3.x.edelsohn-fedora-ppc64/build/Lib/test/test_dbm_ndbm.py", line 111, in test_nonascii_filename
    self.addCleanup(support.unlink, filename + suffix)
AttributeError: module 'test.support' has no attribute 'unlink'


Traceback (most recent call last):
  File "/home/shager/cpython-buildarea/3.x.edelsohn-fedora-ppc64/build/Lib/test/test_dbm_ndbm.py", line 23, in test_keys
    self.assertEqual(self.d.keys(), [])
AssertionError: Lists differ: [b'ndbm context manager', b'bytes key \xbd'] != []


Traceback (most recent call last):
  File "/home/shager/cpython-buildarea/3.x.edelsohn-fedora-ppc64/build/Lib/test/test_dbm_ndbm.py", line 46, in test_empty_value
    self.assertEqual(self.d.keys(), [])
AssertionError: Lists differ: [b'ndbm context manager', b'bytes key \xbd'] != []

@bedevere-bot
Copy link

⚠️⚠️⚠️ Buildbot failure ⚠️⚠️⚠️

Hi! The buildbot s390x RHEL8 LTO 3.x has failed when building commit d94af3f.

What do you need to do:

  1. Don't panic.
  2. Check the buildbot page in the devguide if you don't know what the buildbots are or how they work.
  3. Go to the page of the buildbot that failed (https://buildbot.python.org/all/#builders/490/builds/926) and take a look at the build logs.
  4. Check if the failure is related to this commit (d94af3f) or if it is a false positive.
  5. If the failure is related to this commit, please, reflect that on the issue and make a new Pull Request with a fix.

You can take a look at the buildbot page here:

https://buildbot.python.org/all/#builders/490/builds/926

Failed tests:

  • test_dbm_ndbm

Failed subtests:

  • test_keys - test.test_dbm_ndbm.DbmTestCase
  • test_nonascii_filename - test.test_dbm_ndbm.DbmTestCase
  • test_empty_value - test.test_dbm_ndbm.DbmTestCase
  • test_write_readonly_file - test.test_dbm_ndbm.DbmTestCase
  • test_unicode - test.test_dbm_ndbm.DbmTestCase
  • test_modes - test.test_dbm_ndbm.DbmTestCase
  • test_nonexisting_file - test.test_dbm_ndbm.DbmTestCase
  • test_context_manager - test.test_dbm_ndbm.DbmTestCase
  • test_bytes - test.test_dbm_ndbm.DbmTestCase

Summary of the results of the build (if available):

== Tests result: FAILURE then FAILURE ==

408 tests OK.

10 slowest tests:

  • test_peg_generator: 3 min 22 sec
  • test_concurrent_futures: 3 min 3 sec
  • test_gdb: 1 min 42 sec
  • test_multiprocessing_spawn: 1 min 9 sec
  • test_multiprocessing_forkserver: 59.9 sec
  • test_multiprocessing_fork: 53.5 sec
  • test_signal: 49.2 sec
  • test_asyncio: 44.9 sec
  • test_tokenize: 36.8 sec
  • test_imaplib: 35.0 sec

1 test failed:
test_dbm_ndbm

14 tests skipped:
test_devpoll test_ioctl test_kqueue test_msilib test_nis
test_ossaudiodev test_startfile test_tix test_tk test_ttk_guionly
test_winconsoleio test_winreg test_winsound test_zipfile64

1 re-run test:
test_dbm_ndbm

Total duration: 4 min 36 sec

Click to see traceback logs
Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.x.edelsohn-rhel8-z.lto/build/Lib/test/test_dbm_ndbm.py", line 19, in tearDown
    support.unlink(self.filename + suffix)
AttributeError: module 'test.support' has no attribute 'unlink'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.x.edelsohn-rhel8-z.lto/build/Lib/test/test_dbm_ndbm.py", line 23, in test_keys
    self.assertEqual(self.d.keys(), [])
AssertionError: Lists differ: [b'ndbm context manager', b'bytes key \xbd'] != []


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.x.edelsohn-rhel8-z.lto/build/Lib/test/test_dbm_ndbm.py", line 46, in test_empty_value
    self.assertEqual(self.d.keys(), [])
AssertionError: Lists differ: [b'ndbm context manager', b'bytes key \xbd'] != []


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.x.edelsohn-rhel8-z.lto/build/Lib/test/test_dbm_ndbm.py", line 68, in test_context_manager
    self.assertEqual(list(db.keys()), [b"ndbm context manager"])
AssertionError: Lists differ: [b'ndbm context manager', b'bytes key \xbd'] != [b'ndbm context manager']


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.x.edelsohn-rhel8-z.lto/build/Lib/test/test_dbm_ndbm.py", line 111, in test_nonascii_filename
    self.addCleanup(support.unlink, filename + suffix)
AttributeError: module 'test.support' has no attribute 'unlink'

@bedevere-bot
Copy link

⚠️⚠️⚠️ Buildbot failure ⚠️⚠️⚠️

Hi! The buildbot x86-64 macOS 3.x has failed when building commit d94af3f.

What do you need to do:

  1. Don't panic.
  2. Check the buildbot page in the devguide if you don't know what the buildbots are or how they work.
  3. Go to the page of the buildbot that failed (https://buildbot.python.org/all/#builders/275/builds/1282) and take a look at the build logs.
  4. Check if the failure is related to this commit (d94af3f) or if it is a false positive.
  5. If the failure is related to this commit, please, reflect that on the issue and make a new Pull Request with a fix.

You can take a look at the buildbot page here:

https://buildbot.python.org/all/#builders/275/builds/1282

Failed tests:

  • test_selectors
  • test_dbm_ndbm
  • test__osx_support

Failed subtests:

  • test_nonascii_filename - test.test_dbm_ndbm.DbmTestCase
  • test_nonexisting_file - test.test_dbm_ndbm.DbmTestCase
  • test_register_bad_fd - test.test_selectors.KqueueSelectorTestCase
  • test_bytes - test.test_dbm_ndbm.DbmTestCase
  • test__remove_universal_flags_alternate - test.test__osx_support.Test_OSXSupport
  • test__supports_universal_builds - test.test__osx_support.Test_OSXSupport
  • test_empty_value - test.test_dbm_ndbm.DbmTestCase
  • test_get_platform_osx - test.test__osx_support.Test_OSXSupport
  • test__get_system_version - test.test__osx_support.Test_OSXSupport
  • test_write_readonly_file - test.test_dbm_ndbm.DbmTestCase
  • test__remove_original_values - test.test__osx_support.Test_OSXSupport
  • test_modes - test.test_dbm_ndbm.DbmTestCase
  • test_context_manager - test.test_dbm_ndbm.DbmTestCase
  • test__override_all_archs - test.test__osx_support.Test_OSXSupport
  • test__remove_universal_flags - test.test__osx_support.Test_OSXSupport
  • test__find_build_tool - test.test__osx_support.Test_OSXSupport
  • test__save_modified_value_unchanged - test.test__osx_support.Test_OSXSupport
  • test__save_modified_value - test.test__osx_support.Test_OSXSupport
  • test_unicode - test.test_dbm_ndbm.DbmTestCase
  • test__remove_unsupported_archs - test.test__osx_support.Test_OSXSupport
  • test_keys - test.test_dbm_ndbm.DbmTestCase
  • test__check_for_unavailable_sdk - test.test__osx_support.Test_OSXSupport
  • test__find_appropriate_compiler - test.test__osx_support.Test_OSXSupport
  • test__find_executable - test.test__osx_support.Test_OSXSupport
  • test__read_output - test.test__osx_support.Test_OSXSupport
  • test__check_for_unavailable_sdk_alternate - test.test__osx_support.Test_OSXSupport

Summary of the results of the build (if available):

== Tests result: FAILURE then FAILURE ==

402 tests OK.

10 slowest tests:

  • test_concurrent_futures: 4 min 19 sec
  • test_tokenize: 3 min 32 sec
  • test_unparse: 3 min 31 sec
  • test_multiprocessing_spawn: 2 min 39 sec
  • test_lib2to3: 2 min 3 sec
  • test_multiprocessing_forkserver: 1 min 58 sec
  • test_unicodedata: 1 min 44 sec
  • test_asyncio: 1 min 43 sec
  • test_capi: 1 min 40 sec
  • test_pickle: 1 min 10 sec

3 tests failed:
test__osx_support test_dbm_ndbm test_selectors

18 tests skipped:
test_devpoll test_epoll test_gdb test_ioctl test_msilib
test_multiprocessing_fork test_ossaudiodev test_smtpnet test_spwd
test_ssl test_startfile test_tix test_tk test_ttk_guionly
test_winconsoleio test_winreg test_winsound test_zipfile64

3 re-run tests:
test__osx_support test_dbm_ndbm test_selectors

Total duration: 26 min 22 sec

Click to see traceback logs
Traceback (most recent call last):
  File "/Users/buildbot/buildarea/3.x.billenstein-macos/build/Lib/test/test_dbm_ndbm.py", line 23, in test_keys
    self.assertEqual(self.d.keys(), [])
AssertionError: Lists differ: [b'bytes key \xbd', b'ndbm context manager'] != []


Traceback (most recent call last):
  File "/Users/buildbot/buildarea/3.x.billenstein-macos/build/Lib/test/test_selectors.py", line 539, in test_register_bad_fd
    bad_f = support.make_bad_fd()
AttributeError: module 'test.support' has no attribute 'make_bad_fd'


Traceback (most recent call last):
  File "/Users/buildbot/buildarea/3.x.billenstein-macos/build/Lib/test/test_dbm_ndbm.py", line 46, in test_empty_value
    self.assertEqual(self.d.keys(), [])
AssertionError: Lists differ: [b'bytes key \xbd', b'ndbm context manager'] != []


Traceback (most recent call last):
  File "/Users/buildbot/buildarea/3.x.billenstein-macos/build/Lib/test/test_dbm_ndbm.py", line 111, in test_nonascii_filename
    self.addCleanup(support.unlink, filename + suffix)
AttributeError: module 'test.support' has no attribute 'unlink'


Traceback (most recent call last):
  File "/Users/buildbot/buildarea/3.x.billenstein-macos/build/Lib/test/test_dbm_ndbm.py", line 68, in test_context_manager
    self.assertEqual(list(db.keys()), [b"ndbm context manager"])
AssertionError: Lists differ: [b'bytes key \xbd', b'ndbm context manager'] != [b'ndbm context manager']


Traceback (most recent call last):
  File "/Users/buildbot/buildarea/3.x.billenstein-macos/build/Lib/test/test_dbm_ndbm.py", line 19, in tearDown
    support.unlink(self.filename + suffix)
AttributeError: module 'test.support' has no attribute 'unlink'


Traceback (most recent call last):
  File "/Users/buildbot/buildarea/3.x.billenstein-macos/build/Lib/test/test__osx_support.py", line 22, in setUp
    self.env = test.support.EnvironmentVarGuard()
AttributeError: module 'test.support' has no attribute 'EnvironmentVarGuard'

@bedevere-bot
Copy link

⚠️⚠️⚠️ Buildbot failure ⚠️⚠️⚠️

Hi! The buildbot s390x Fedora Clang 3.x has failed when building commit d94af3f.

What do you need to do:

  1. Don't panic.
  2. Check the buildbot page in the devguide if you don't know what the buildbots are or how they work.
  3. Go to the page of the buildbot that failed (https://buildbot.python.org/all/#builders/538/builds/858) and take a look at the build logs.
  4. Check if the failure is related to this commit (d94af3f) or if it is a false positive.
  5. If the failure is related to this commit, please, reflect that on the issue and make a new Pull Request with a fix.

You can take a look at the buildbot page here:

https://buildbot.python.org/all/#builders/538/builds/858

Failed tests:

  • test_dbm_ndbm

Failed subtests:

  • test_keys - test.test_dbm_ndbm.DbmTestCase
  • test_nonascii_filename - test.test_dbm_ndbm.DbmTestCase
  • test_empty_value - test.test_dbm_ndbm.DbmTestCase
  • test_write_readonly_file - test.test_dbm_ndbm.DbmTestCase
  • test_unicode - test.test_dbm_ndbm.DbmTestCase
  • test_modes - test.test_dbm_ndbm.DbmTestCase
  • test_nonexisting_file - test.test_dbm_ndbm.DbmTestCase
  • test_context_manager - test.test_dbm_ndbm.DbmTestCase
  • test_bytes - test.test_dbm_ndbm.DbmTestCase

Summary of the results of the build (if available):

== Tests result: FAILURE then FAILURE ==

406 tests OK.

10 slowest tests:

  • test_concurrent_futures: 2 min 43 sec
  • test_peg_generator: 2 min 24 sec
  • test_multiprocessing_spawn: 1 min 9 sec
  • test_multiprocessing_forkserver: 1 min 1 sec
  • test_multiprocessing_fork: 52.4 sec
  • test_asyncio: 47.8 sec
  • test_signal: 47.0 sec
  • test_tokenize: 37.6 sec
  • test_io: 31.9 sec
  • test_pydoc: 31.4 sec

1 test failed:
test_dbm_ndbm

16 tests skipped:
test_devpoll test_gdb test_ioctl test_kqueue test_msilib test_nis
test_ossaudiodev test_readline test_startfile test_tix test_tk
test_ttk_guionly test_winconsoleio test_winreg test_winsound
test_zipfile64

1 re-run test:
test_dbm_ndbm

Total duration: 4 min 54 sec

Click to see traceback logs
Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.x.edelsohn-fedora-z.clang/build/Lib/test/test_dbm_ndbm.py", line 68, in test_context_manager
    self.assertEqual(list(db.keys()), [b"ndbm context manager"])
AssertionError: Lists differ: [b'ndbm context manager', b'bytes key \xbd'] != [b'ndbm context manager']


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.x.edelsohn-fedora-z.clang/build/Lib/test/test_dbm_ndbm.py", line 19, in tearDown
    support.unlink(self.filename + suffix)
AttributeError: module 'test.support' has no attribute 'unlink'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.x.edelsohn-fedora-z.clang/build/Lib/test/test_dbm_ndbm.py", line 111, in test_nonascii_filename
    self.addCleanup(support.unlink, filename + suffix)
AttributeError: module 'test.support' has no attribute 'unlink'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.x.edelsohn-fedora-z.clang/build/Lib/test/test_dbm_ndbm.py", line 46, in test_empty_value
    self.assertEqual(self.d.keys(), [])
AssertionError: Lists differ: [b'ndbm context manager', b'bytes key \xbd'] != []


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.x.edelsohn-fedora-z.clang/build/Lib/test/test_dbm_ndbm.py", line 23, in test_keys
    self.assertEqual(self.d.keys(), [])
AssertionError: Lists differ: [b'ndbm context manager', b'bytes key \xbd'] != []

@bedevere-bot
Copy link

⚠️⚠️⚠️ Buildbot failure ⚠️⚠️⚠️

Hi! The buildbot PPC64LE RHEL7 LTO + PGO 3.x has failed when building commit d94af3f.

What do you need to do:

  1. Don't panic.
  2. Check the buildbot page in the devguide if you don't know what the buildbots are or how they work.
  3. Go to the page of the buildbot that failed (https://buildbot.python.org/all/#builders/344/builds/1014) and take a look at the build logs.
  4. Check if the failure is related to this commit (d94af3f) or if it is a false positive.
  5. If the failure is related to this commit, please, reflect that on the issue and make a new Pull Request with a fix.

You can take a look at the buildbot page here:

https://buildbot.python.org/all/#builders/344/builds/1014

Failed tests:

  • test_dbm_ndbm

Failed subtests:

  • test_keys - test.test_dbm_ndbm.DbmTestCase
  • test_nonascii_filename - test.test_dbm_ndbm.DbmTestCase
  • test_empty_value - test.test_dbm_ndbm.DbmTestCase
  • test_write_readonly_file - test.test_dbm_ndbm.DbmTestCase
  • test_unicode - test.test_dbm_ndbm.DbmTestCase
  • test_modes - test.test_dbm_ndbm.DbmTestCase
  • test_nonexisting_file - test.test_dbm_ndbm.DbmTestCase
  • test_context_manager - test.test_dbm_ndbm.DbmTestCase
  • test_bytes - test.test_dbm_ndbm.DbmTestCase

Summary of the results of the build (if available):

== Tests result: FAILURE then FAILURE ==

408 tests OK.

10 slowest tests:

  • test_peg_generator: 4 min 32 sec
  • test_concurrent_futures: 3 min 21 sec
  • test_tokenize: 3 min 18 sec
  • test_unparse: 2 min 28 sec
  • test_lib2to3: 2 min 19 sec
  • test_multiprocessing_spawn: 1 min 59 sec
  • test_multiprocessing_forkserver: 1 min 45 sec
  • test_asyncio: 1 min 30 sec
  • test_unicodedata: 1 min 7 sec
  • test_multiprocessing_fork: 1 min 6 sec

1 test failed:
test_dbm_ndbm

14 tests skipped:
test_devpoll test_gdb test_ioctl test_kqueue test_msilib
test_ossaudiodev test_startfile test_tix test_tk test_ttk_guionly
test_winconsoleio test_winreg test_winsound test_zipfile64

1 re-run test:
test_dbm_ndbm

Total duration: 9 min 13 sec

Click to see traceback logs
Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-ppc64le.lto-pgo/build/Lib/test/test_dbm_ndbm.py", line 23, in test_keys
    self.assertEqual(self.d.keys(), [])
AssertionError: Lists differ: [b'ndbm context manager', b'bytes key \xbd'] != []


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-ppc64le.lto-pgo/build/Lib/test/test_dbm_ndbm.py", line 68, in test_context_manager
    self.assertEqual(list(db.keys()), [b"ndbm context manager"])
AssertionError: Lists differ: [b'ndbm context manager', b'bytes key \xbd'] != [b'ndbm context manager']


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-ppc64le.lto-pgo/build/Lib/test/test_dbm_ndbm.py", line 111, in test_nonascii_filename
    self.addCleanup(support.unlink, filename + suffix)
AttributeError: module 'test.support' has no attribute 'unlink'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-ppc64le.lto-pgo/build/Lib/test/test_dbm_ndbm.py", line 46, in test_empty_value
    self.assertEqual(self.d.keys(), [])
AssertionError: Lists differ: [b'ndbm context manager', b'bytes key \xbd'] != []


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-ppc64le.lto-pgo/build/Lib/test/test_dbm_ndbm.py", line 19, in tearDown
    support.unlink(self.filename + suffix)
AttributeError: module 'test.support' has no attribute 'unlink'

@bedevere-bot
Copy link

⚠️⚠️⚠️ Buildbot failure ⚠️⚠️⚠️

Hi! The buildbot PPC64LE Fedora Stable Clang Installed 3.x has failed when building commit d94af3f.

What do you need to do:

  1. Don't panic.
  2. Check the buildbot page in the devguide if you don't know what the buildbots are or how they work.
  3. Go to the page of the buildbot that failed (https://buildbot.python.org/all/#builders/354/builds/808) and take a look at the build logs.
  4. Check if the failure is related to this commit (d94af3f) or if it is a false positive.
  5. If the failure is related to this commit, please, reflect that on the issue and make a new Pull Request with a fix.

You can take a look at the buildbot page here:

https://buildbot.python.org/all/#builders/354/builds/808

Failed tests:

  • test_dbm_ndbm

Failed subtests:

  • test_keys - test.test_dbm_ndbm.DbmTestCase
  • test_nonascii_filename - test.test_dbm_ndbm.DbmTestCase
  • test_empty_value - test.test_dbm_ndbm.DbmTestCase
  • test_write_readonly_file - test.test_dbm_ndbm.DbmTestCase
  • test_unicode - test.test_dbm_ndbm.DbmTestCase
  • test_modes - test.test_dbm_ndbm.DbmTestCase
  • test_nonexisting_file - test.test_dbm_ndbm.DbmTestCase
  • test_context_manager - test.test_dbm_ndbm.DbmTestCase
  • test_bytes - test.test_dbm_ndbm.DbmTestCase

Summary of the results of the build (if available):

== Tests result: FAILURE then FAILURE ==

405 tests OK.

1 test failed:
test_dbm_ndbm

17 tests skipped:
test_asdl_parser test_check_c_globals test_clinic test_devpoll
test_gdb test_ioctl test_kqueue test_msilib test_ossaudiodev
test_startfile test_tix test_tk test_ttk_guionly test_winconsoleio
test_winreg test_winsound test_zipfile64

1 re-run test:
test_dbm_ndbm

Total duration: 4 min 32 sec

Click to see traceback logs
Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.clang-installed/build/target/lib/python3.10/test/test_dbm_ndbm.py", line 19, in tearDown
    support.unlink(self.filename + suffix)
AttributeError: module 'test.support' has no attribute 'unlink'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.clang-installed/build/target/lib/python3.10/test/test_dbm_ndbm.py", line 46, in test_empty_value
    self.assertEqual(self.d.keys(), [])
AssertionError: Lists differ: [b'ndbm context manager', b'bytes key \xbd'] != []


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.clang-installed/build/target/lib/python3.10/test/test_dbm_ndbm.py", line 23, in test_keys
    self.assertEqual(self.d.keys(), [])
AssertionError: Lists differ: [b'ndbm context manager', b'bytes key \xbd'] != []


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.clang-installed/build/target/lib/python3.10/test/test_dbm_ndbm.py", line 68, in test_context_manager
    self.assertEqual(list(db.keys()), [b"ndbm context manager"])
AssertionError: Lists differ: [b'ndbm context manager', b'bytes key \xbd'] != [b'ndbm context manager']


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.clang-installed/build/target/lib/python3.10/test/test_dbm_ndbm.py", line 111, in test_nonascii_filename
    self.addCleanup(support.unlink, filename + suffix)
AttributeError: module 'test.support' has no attribute 'unlink'

@bedevere-bot
Copy link

⚠️⚠️⚠️ Buildbot failure ⚠️⚠️⚠️

Hi! The buildbot s390x RHEL7 LTO 3.x has failed when building commit d94af3f.

What do you need to do:

  1. Don't panic.
  2. Check the buildbot page in the devguide if you don't know what the buildbots are or how they work.
  3. Go to the page of the buildbot that failed (https://buildbot.python.org/all/#builders/527/builds/895) and take a look at the build logs.
  4. Check if the failure is related to this commit (d94af3f) or if it is a false positive.
  5. If the failure is related to this commit, please, reflect that on the issue and make a new Pull Request with a fix.

You can take a look at the buildbot page here:

https://buildbot.python.org/all/#builders/527/builds/895

Failed tests:

  • test_dbm_ndbm

Failed subtests:

  • test_keys - test.test_dbm_ndbm.DbmTestCase
  • test_nonascii_filename - test.test_dbm_ndbm.DbmTestCase
  • test_empty_value - test.test_dbm_ndbm.DbmTestCase
  • test_write_readonly_file - test.test_dbm_ndbm.DbmTestCase
  • test_unicode - test.test_dbm_ndbm.DbmTestCase
  • test_modes - test.test_dbm_ndbm.DbmTestCase
  • test_nonexisting_file - test.test_dbm_ndbm.DbmTestCase
  • test_context_manager - test.test_dbm_ndbm.DbmTestCase
  • test_bytes - test.test_dbm_ndbm.DbmTestCase

Summary of the results of the build (if available):

== Tests result: FAILURE then FAILURE ==

409 tests OK.

10 slowest tests:

  • test_concurrent_futures: 3 min 3 sec
  • test_peg_generator: 2 min 34 sec
  • test_tokenize: 1 min 40 sec
  • test_multiprocessing_spawn: 1 min 39 sec
  • test_unparse: 1 min 21 sec
  • test_multiprocessing_forkserver: 1 min 10 sec
  • test_asyncio: 1 min 4 sec
  • test_lib2to3: 1 min 2 sec
  • test_multiprocessing_fork: 1 min
  • test_signal: 50.4 sec

1 test failed:
test_dbm_ndbm

13 tests skipped:
test_devpoll test_ioctl test_kqueue test_msilib test_ossaudiodev
test_startfile test_tix test_tk test_ttk_guionly test_winconsoleio
test_winreg test_winsound test_zipfile64

1 re-run test:
test_dbm_ndbm

Total duration: 6 min 51 sec

Click to see traceback logs
Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto/build/Lib/test/test_dbm_ndbm.py", line 68, in test_context_manager
    self.assertEqual(list(db.keys()), [b"ndbm context manager"])
AssertionError: Lists differ: [b'ndbm context manager', b'bytes key \xbd'] != [b'ndbm context manager']


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto/build/Lib/test/test_dbm_ndbm.py", line 19, in tearDown
    support.unlink(self.filename + suffix)
AttributeError: module 'test.support' has no attribute 'unlink'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto/build/Lib/test/test_dbm_ndbm.py", line 23, in test_keys
    self.assertEqual(self.d.keys(), [])
AssertionError: Lists differ: [b'ndbm context manager', b'bytes key \xbd'] != []


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto/build/Lib/test/test_dbm_ndbm.py", line 111, in test_nonascii_filename
    self.addCleanup(support.unlink, filename + suffix)
AttributeError: module 'test.support' has no attribute 'unlink'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.x.edelsohn-rhel-z.lto/build/Lib/test/test_dbm_ndbm.py", line 46, in test_empty_value
    self.assertEqual(self.d.keys(), [])
AssertionError: Lists differ: [b'ndbm context manager', b'bytes key \xbd'] != []

@bedevere-bot
Copy link

⚠️⚠️⚠️ Buildbot failure ⚠️⚠️⚠️

Hi! The buildbot AMD64 Ubuntu Shared 3.x has failed when building commit d94af3f.

What do you need to do:

  1. Don't panic.
  2. Check the buildbot page in the devguide if you don't know what the buildbots are or how they work.
  3. Go to the page of the buildbot that failed (https://buildbot.python.org/all/#builders/101/builds/1442) and take a look at the build logs.
  4. Check if the failure is related to this commit (d94af3f) or if it is a false positive.
  5. If the failure is related to this commit, please, reflect that on the issue and make a new Pull Request with a fix.

You can take a look at the buildbot page here:

https://buildbot.python.org/all/#builders/101/builds/1442

Failed tests:

  • test_dbm_ndbm

Failed subtests:

  • test_keys - test.test_dbm_ndbm.DbmTestCase
  • test_nonascii_filename - test.test_dbm_ndbm.DbmTestCase
  • test_empty_value - test.test_dbm_ndbm.DbmTestCase
  • test_write_readonly_file - test.test_dbm_ndbm.DbmTestCase
  • test_unicode - test.test_dbm_ndbm.DbmTestCase
  • test_modes - test.test_dbm_ndbm.DbmTestCase
  • test_nonexisting_file - test.test_dbm_ndbm.DbmTestCase
  • test_context_manager - test.test_dbm_ndbm.DbmTestCase
  • test_bytes - test.test_dbm_ndbm.DbmTestCase

Summary of the results of the build (if available):

== Tests result: FAILURE then FAILURE ==

405 tests OK.

10 slowest tests:

  • test_concurrent_futures: 5 min 3 sec
  • test_gdb: 3 min 17 sec
  • test_multiprocessing_spawn: 2 min 59 sec
  • test_peg_generator: 2 min 56 sec
  • test_lib2to3: 2 min 31 sec
  • test_tokenize: 2 min 26 sec
  • test_unparse: 2 min 19 sec
  • test_asyncio: 2 min 15 sec
  • test_capi: 2 min 13 sec
  • test_multiprocessing_forkserver: 1 min 43 sec

1 test failed:
test_dbm_ndbm

17 tests skipped:
test_devpoll test_idle test_ioctl test_kqueue test_msilib
test_ossaudiodev test_startfile test_tcl test_tix test_tk
test_ttk_guionly test_ttk_textonly test_turtle test_winconsoleio
test_winreg test_winsound test_zipfile64

1 re-run test:
test_dbm_ndbm

Total duration: 29 min 6 sec

Click to see traceback logs
Traceback (most recent call last):
  File "/srv/buildbot/buildarea/3.x.bolen-ubuntu/build/Lib/test/test_dbm_ndbm.py", line 68, in test_context_manager
    self.assertEqual(list(db.keys()), [b"ndbm context manager"])
AssertionError: Lists differ: [b'bytes key \xbd', b'ndbm context manager'] != [b'ndbm context manager']


Traceback (most recent call last):
  File "/srv/buildbot/buildarea/3.x.bolen-ubuntu/build/Lib/test/test_dbm_ndbm.py", line 111, in test_nonascii_filename
    self.addCleanup(support.unlink, filename + suffix)
AttributeError: module 'test.support' has no attribute 'unlink'


Traceback (most recent call last):
  File "/srv/buildbot/buildarea/3.x.bolen-ubuntu/build/Lib/test/test_dbm_ndbm.py", line 23, in test_keys
    self.assertEqual(self.d.keys(), [])
AssertionError: Lists differ: [b'bytes key \xbd', b'ndbm context manager'] != []


Traceback (most recent call last):
  File "/srv/buildbot/buildarea/3.x.bolen-ubuntu/build/Lib/test/test_dbm_ndbm.py", line 19, in tearDown
    support.unlink(self.filename + suffix)
AttributeError: module 'test.support' has no attribute 'unlink'

@bedevere-bot
Copy link

⚠️⚠️⚠️ Buildbot failure ⚠️⚠️⚠️

Hi! The buildbot s390x Fedora Clang Installed 3.x has failed when building commit d94af3f.

What do you need to do:

  1. Don't panic.
  2. Check the buildbot page in the devguide if you don't know what the buildbots are or how they work.
  3. Go to the page of the buildbot that failed (https://buildbot.python.org/all/#builders/505/builds/859) and take a look at the build logs.
  4. Check if the failure is related to this commit (d94af3f) or if it is a false positive.
  5. If the failure is related to this commit, please, reflect that on the issue and make a new Pull Request with a fix.

You can take a look at the buildbot page here:

https://buildbot.python.org/all/#builders/505/builds/859

Failed tests:

  • test_dbm_ndbm

Failed subtests:

  • test_keys - test.test_dbm_ndbm.DbmTestCase
  • test_nonascii_filename - test.test_dbm_ndbm.DbmTestCase
  • test_empty_value - test.test_dbm_ndbm.DbmTestCase
  • test_write_readonly_file - test.test_dbm_ndbm.DbmTestCase
  • test_unicode - test.test_dbm_ndbm.DbmTestCase
  • test_modes - test.test_dbm_ndbm.DbmTestCase
  • test_nonexisting_file - test.test_dbm_ndbm.DbmTestCase
  • test_context_manager - test.test_dbm_ndbm.DbmTestCase
  • test_bytes - test.test_dbm_ndbm.DbmTestCase

Summary of the results of the build (if available):

== Tests result: FAILURE then FAILURE ==

403 tests OK.

1 test failed:
test_dbm_ndbm

19 tests skipped:
test_asdl_parser test_check_c_globals test_clinic test_devpoll
test_gdb test_ioctl test_kqueue test_msilib test_nis
test_ossaudiodev test_readline test_startfile test_tix test_tk
test_ttk_guionly test_winconsoleio test_winreg test_winsound
test_zipfile64

1 re-run test:
test_dbm_ndbm

Total duration: 4 min 2 sec

Click to see traceback logs
Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.x.edelsohn-fedora-z.clang-installed/build/target/lib/python3.10/test/test_dbm_ndbm.py", line 111, in test_nonascii_filename
    self.addCleanup(support.unlink, filename + suffix)
AttributeError: module 'test.support' has no attribute 'unlink'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.x.edelsohn-fedora-z.clang-installed/build/target/lib/python3.10/test/test_dbm_ndbm.py", line 46, in test_empty_value
    self.assertEqual(self.d.keys(), [])
AssertionError: Lists differ: [b'ndbm context manager', b'bytes key \xbd'] != []


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.x.edelsohn-fedora-z.clang-installed/build/target/lib/python3.10/test/test_dbm_ndbm.py", line 19, in tearDown
    support.unlink(self.filename + suffix)
AttributeError: module 'test.support' has no attribute 'unlink'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.x.edelsohn-fedora-z.clang-installed/build/target/lib/python3.10/test/test_dbm_ndbm.py", line 23, in test_keys
    self.assertEqual(self.d.keys(), [])
AssertionError: Lists differ: [b'ndbm context manager', b'bytes key \xbd'] != []


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.x.edelsohn-fedora-z.clang-installed/build/target/lib/python3.10/test/test_dbm_ndbm.py", line 68, in test_context_manager
    self.assertEqual(list(db.keys()), [b"ndbm context manager"])
AssertionError: Lists differ: [b'ndbm context manager', b'bytes key \xbd'] != [b'ndbm context manager']

@bedevere-bot
Copy link

⚠️⚠️⚠️ Buildbot failure ⚠️⚠️⚠️

Hi! The buildbot AMD64 RHEL8 LTO + PGO 3.x has failed when building commit d94af3f.

What do you need to do:

  1. Don't panic.
  2. Check the buildbot page in the devguide if you don't know what the buildbots are or how they work.
  3. Go to the page of the buildbot that failed (https://buildbot.python.org/all/#builders/95/builds/1162) and take a look at the build logs.
  4. Check if the failure is related to this commit (d94af3f) or if it is a false positive.
  5. If the failure is related to this commit, please, reflect that on the issue and make a new Pull Request with a fix.

You can take a look at the buildbot page here:

https://buildbot.python.org/all/#builders/95/builds/1162

Failed tests:

  • test_dbm_ndbm

Failed subtests:

  • test_keys - test.test_dbm_ndbm.DbmTestCase
  • test_nonascii_filename - test.test_dbm_ndbm.DbmTestCase
  • test_empty_value - test.test_dbm_ndbm.DbmTestCase
  • test_write_readonly_file - test.test_dbm_ndbm.DbmTestCase
  • test_unicode - test.test_dbm_ndbm.DbmTestCase
  • test_modes - test.test_dbm_ndbm.DbmTestCase
  • test_nonexisting_file - test.test_dbm_ndbm.DbmTestCase
  • test_context_manager - test.test_dbm_ndbm.DbmTestCase
  • test_bytes - test.test_dbm_ndbm.DbmTestCase

Summary of the results of the build (if available):

== Tests result: FAILURE then FAILURE ==

408 tests OK.

10 slowest tests:

  • test_peg_generator: 5 min 30 sec
  • test_concurrent_futures: 2 min 47 sec
  • test_multiprocessing_spawn: 1 min 14 sec
  • test_mailbox: 1 min 11 sec
  • test_multiprocessing_forkserver: 1 min 2 sec
  • test_shelve: 1 min 1 sec
  • test_multiprocessing_fork: 55.3 sec
  • test_asyncio: 53.2 sec
  • test_signal: 46.8 sec
  • test_lib2to3: 41.4 sec

1 test failed:
test_dbm_ndbm

14 tests skipped:
test_devpoll test_gdb test_ioctl test_kqueue test_msilib
test_ossaudiodev test_startfile test_tix test_tk test_ttk_guionly
test_winconsoleio test_winreg test_winsound test_zipfile64

1 re-run test:
test_dbm_ndbm

Total duration: 7 min 11 sec

Click to see traceback logs
Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.x.cstratak-RHEL8-x86_64.lto-pgo/build/Lib/test/test_dbm_ndbm.py", line 46, in test_empty_value
    self.assertEqual(self.d.keys(), [])
AssertionError: Lists differ: [b'bytes key \xbd', b'ndbm context manager'] != []


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.x.cstratak-RHEL8-x86_64.lto-pgo/build/Lib/test/test_dbm_ndbm.py", line 19, in tearDown
    support.unlink(self.filename + suffix)
AttributeError: module 'test.support' has no attribute 'unlink'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.x.cstratak-RHEL8-x86_64.lto-pgo/build/Lib/test/test_dbm_ndbm.py", line 23, in test_keys
    self.assertEqual(self.d.keys(), [])
AssertionError: Lists differ: [b'bytes key \xbd', b'ndbm context manager'] != []


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.x.cstratak-RHEL8-x86_64.lto-pgo/build/Lib/test/test_dbm_ndbm.py", line 68, in test_context_manager
    self.assertEqual(list(db.keys()), [b"ndbm context manager"])
AssertionError: Lists differ: [b'bytes key \xbd', b'ndbm context manager'] != [b'ndbm context manager']


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.x.cstratak-RHEL8-x86_64.lto-pgo/build/Lib/test/test_dbm_ndbm.py", line 111, in test_nonascii_filename
    self.addCleanup(support.unlink, filename + suffix)
AttributeError: module 'test.support' has no attribute 'unlink'

@bedevere-bot
Copy link

⚠️⚠️⚠️ Buildbot failure ⚠️⚠️⚠️

Hi! The buildbot PPC64LE RHEL8 LTO + PGO 3.x has failed when building commit d94af3f.

What do you need to do:

  1. Don't panic.
  2. Check the buildbot page in the devguide if you don't know what the buildbots are or how they work.
  3. Go to the page of the buildbot that failed (https://buildbot.python.org/all/#builders/450/builds/745) and take a look at the build logs.
  4. Check if the failure is related to this commit (d94af3f) or if it is a false positive.
  5. If the failure is related to this commit, please, reflect that on the issue and make a new Pull Request with a fix.

You can take a look at the buildbot page here:

https://buildbot.python.org/all/#builders/450/builds/745

Failed tests:

  • test_dbm_ndbm

Failed subtests:

  • test_keys - test.test_dbm_ndbm.DbmTestCase
  • test_nonascii_filename - test.test_dbm_ndbm.DbmTestCase
  • test_empty_value - test.test_dbm_ndbm.DbmTestCase
  • test_write_readonly_file - test.test_dbm_ndbm.DbmTestCase
  • test_unicode - test.test_dbm_ndbm.DbmTestCase
  • test_modes - test.test_dbm_ndbm.DbmTestCase
  • test_nonexisting_file - test.test_dbm_ndbm.DbmTestCase
  • test_context_manager - test.test_dbm_ndbm.DbmTestCase
  • test_bytes - test.test_dbm_ndbm.DbmTestCase

Summary of the results of the build (if available):

== Tests result: FAILURE then FAILURE ==

408 tests OK.

10 slowest tests:

  • test_peg_generator: 7 min 1 sec
  • test_concurrent_futures: 2 min 53 sec
  • test_multiprocessing_spawn: 1 min 14 sec
  • test_asyncio: 1 min 10 sec
  • test_tokenize: 1 min 9 sec
  • test_multiprocessing_forkserver: 1 min 8 sec
  • test_multiprocessing_fork: 58.8 sec
  • test_capi: 49.7 sec
  • test_signal: 47.0 sec
  • test_lib2to3: 43.5 sec

1 test failed:
test_dbm_ndbm

14 tests skipped:
test_devpoll test_gdb test_ioctl test_kqueue test_msilib
test_ossaudiodev test_startfile test_tix test_tk test_ttk_guionly
test_winconsoleio test_winreg test_winsound test_zipfile64

1 re-run test:
test_dbm_ndbm

Total duration: 8 min 31 sec

Click to see traceback logs
Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.x.cstratak-RHEL8-ppc64le.lto-pgo/build/Lib/test/test_dbm_ndbm.py", line 68, in test_context_manager
    self.assertEqual(list(db.keys()), [b"ndbm context manager"])
AssertionError: Lists differ: [b'ndbm context manager', b'bytes key \xbd'] != [b'ndbm context manager']


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.x.cstratak-RHEL8-ppc64le.lto-pgo/build/Lib/test/test_dbm_ndbm.py", line 46, in test_empty_value
    self.assertEqual(self.d.keys(), [])
AssertionError: Lists differ: [b'ndbm context manager', b'bytes key \xbd'] != []


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.x.cstratak-RHEL8-ppc64le.lto-pgo/build/Lib/test/test_dbm_ndbm.py", line 111, in test_nonascii_filename
    self.addCleanup(support.unlink, filename + suffix)
AttributeError: module 'test.support' has no attribute 'unlink'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.x.cstratak-RHEL8-ppc64le.lto-pgo/build/Lib/test/test_dbm_ndbm.py", line 23, in test_keys
    self.assertEqual(self.d.keys(), [])
AssertionError: Lists differ: [b'ndbm context manager', b'bytes key \xbd'] != []


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.x.cstratak-RHEL8-ppc64le.lto-pgo/build/Lib/test/test_dbm_ndbm.py", line 19, in tearDown
    support.unlink(self.filename + suffix)
AttributeError: module 'test.support' has no attribute 'unlink'

@bedevere-bot
Copy link

⚠️⚠️⚠️ Buildbot failure ⚠️⚠️⚠️

Hi! The buildbot PPC64LE RHEL7 LTO 3.x has failed when building commit d94af3f.

What do you need to do:

  1. Don't panic.
  2. Check the buildbot page in the devguide if you don't know what the buildbots are or how they work.
  3. Go to the page of the buildbot that failed (https://buildbot.python.org/all/#builders/373/builds/1018) and take a look at the build logs.
  4. Check if the failure is related to this commit (d94af3f) or if it is a false positive.
  5. If the failure is related to this commit, please, reflect that on the issue and make a new Pull Request with a fix.

You can take a look at the buildbot page here:

https://buildbot.python.org/all/#builders/373/builds/1018

Failed tests:

  • test_dbm_ndbm

Failed subtests:

  • test_keys - test.test_dbm_ndbm.DbmTestCase
  • test_nonascii_filename - test.test_dbm_ndbm.DbmTestCase
  • test_empty_value - test.test_dbm_ndbm.DbmTestCase
  • test_write_readonly_file - test.test_dbm_ndbm.DbmTestCase
  • test_unicode - test.test_dbm_ndbm.DbmTestCase
  • test_modes - test.test_dbm_ndbm.DbmTestCase
  • test_nonexisting_file - test.test_dbm_ndbm.DbmTestCase
  • test_context_manager - test.test_dbm_ndbm.DbmTestCase
  • test_bytes - test.test_dbm_ndbm.DbmTestCase

Summary of the results of the build (if available):

== Tests result: FAILURE then FAILURE ==

409 tests OK.

10 slowest tests:

  • test_peg_generator: 3 min 31 sec
  • test_concurrent_futures: 3 min 22 sec
  • test_tokenize: 3 min 2 sec
  • test_unparse: 2 min 34 sec
  • test_multiprocessing_spawn: 2 min 11 sec
  • test_lib2to3: 2 min 5 sec
  • test_asyncio: 1 min 29 sec
  • test_multiprocessing_forkserver: 1 min 23 sec
  • test_unicodedata: 1 min 11 sec
  • test_multiprocessing_fork: 1 min 5 sec

1 test failed:
test_dbm_ndbm

13 tests skipped:
test_devpoll test_ioctl test_kqueue test_msilib test_ossaudiodev
test_startfile test_tix test_tk test_ttk_guionly test_winconsoleio
test_winreg test_winsound test_zipfile64

1 re-run test:
test_dbm_ndbm

Total duration: 6 min 40 sec

Click to see traceback logs
Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-ppc64le.lto/build/Lib/test/test_dbm_ndbm.py", line 19, in tearDown
    support.unlink(self.filename + suffix)
AttributeError: module 'test.support' has no attribute 'unlink'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-ppc64le.lto/build/Lib/test/test_dbm_ndbm.py", line 111, in test_nonascii_filename
    self.addCleanup(support.unlink, filename + suffix)
AttributeError: module 'test.support' has no attribute 'unlink'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-ppc64le.lto/build/Lib/test/test_dbm_ndbm.py", line 46, in test_empty_value
    self.assertEqual(self.d.keys(), [])
AssertionError: Lists differ: [b'ndbm context manager', b'bytes key \xbd'] != []


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-ppc64le.lto/build/Lib/test/test_dbm_ndbm.py", line 68, in test_context_manager
    self.assertEqual(list(db.keys()), [b"ndbm context manager"])
AssertionError: Lists differ: [b'ndbm context manager', b'bytes key \xbd'] != [b'ndbm context manager']


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-ppc64le.lto/build/Lib/test/test_dbm_ndbm.py", line 23, in test_keys
    self.assertEqual(self.d.keys(), [])
AssertionError: Lists differ: [b'ndbm context manager', b'bytes key \xbd'] != []

@bedevere-bot
Copy link

⚠️⚠️⚠️ Buildbot failure ⚠️⚠️⚠️

Hi! The buildbot x86 Gentoo Installed with X 3.x has failed when building commit d94af3f.

What do you need to do:

  1. Don't panic.
  2. Check the buildbot page in the devguide if you don't know what the buildbots are or how they work.
  3. Go to the page of the buildbot that failed (https://buildbot.python.org/all/#builders/128/builds/1271) and take a look at the build logs.
  4. Check if the failure is related to this commit (d94af3f) or if it is a false positive.
  5. If the failure is related to this commit, please, reflect that on the issue and make a new Pull Request with a fix.

You can take a look at the buildbot page here:

https://buildbot.python.org/all/#builders/128/builds/1271

Failed tests:

  • test_dbm_ndbm

Failed subtests:

  • test_keys - test.test_dbm_ndbm.DbmTestCase
  • test_nonascii_filename - test.test_dbm_ndbm.DbmTestCase
  • test_empty_value - test.test_dbm_ndbm.DbmTestCase
  • test_write_readonly_file - test.test_dbm_ndbm.DbmTestCase
  • test_unicode - test.test_dbm_ndbm.DbmTestCase
  • test_modes - test.test_dbm_ndbm.DbmTestCase
  • test_nonexisting_file - test.test_dbm_ndbm.DbmTestCase
  • test_context_manager - test.test_dbm_ndbm.DbmTestCase
  • test_bytes - test.test_dbm_ndbm.DbmTestCase

Summary of the results of the build (if available):

== Tests result: FAILURE then FAILURE ==

409 tests OK.

1 test failed:
test_dbm_ndbm

13 tests skipped:
test_asdl_parser test_check_c_globals test_clinic test_devpoll
test_gdb test_ioctl test_kqueue test_msilib test_startfile
test_winconsoleio test_winreg test_winsound test_zipfile64

1 re-run test:
test_dbm_ndbm

Total duration: 35 min 5 sec

Click to see traceback logs
Traceback (most recent call last):
  File "/buildbot/buildarea/cpython/3.x.ware-gentoo-x86.installed/build/target/lib/python3.10/test/test_dbm_ndbm.py", line 19, in tearDown
    support.unlink(self.filename + suffix)
AttributeError: module 'test.support' has no attribute 'unlink'


Traceback (most recent call last):
  File "/buildbot/buildarea/cpython/3.x.ware-gentoo-x86.installed/build/target/lib/python3.10/test/test_dbm_ndbm.py", line 111, in test_nonascii_filename
    self.addCleanup(support.unlink, filename + suffix)
AttributeError: module 'test.support' has no attribute 'unlink'


Traceback (most recent call last):
  File "/buildbot/buildarea/cpython/3.x.ware-gentoo-x86.installed/build/target/lib/python3.10/test/test_dbm_ndbm.py", line 46, in test_empty_value
    self.assertEqual(self.d.keys(), [])
AssertionError: Lists differ: [b'bytes key \xbd', b'ndbm context manager'] != []


Traceback (most recent call last):
  File "/buildbot/buildarea/cpython/3.x.ware-gentoo-x86.installed/build/target/lib/python3.10/test/test_dbm_ndbm.py", line 68, in test_context_manager
    self.assertEqual(list(db.keys()), [b"ndbm context manager"])
AssertionError: Lists differ: [b'bytes key \xbd', b'ndbm context manager'] != [b'ndbm context manager']


Traceback (most recent call last):
  File "/buildbot/buildarea/cpython/3.x.ware-gentoo-x86.installed/build/target/lib/python3.10/test/test_dbm_ndbm.py", line 23, in test_keys
    self.assertEqual(self.d.keys(), [])
AssertionError: Lists differ: [b'bytes key \xbd', b'ndbm context manager'] != []

@shihai1991
Copy link
Member Author

oh, looks like some testcases failed.

@bedevere-bot
Copy link

⚠️⚠️⚠️ Buildbot failure ⚠️⚠️⚠️

Hi! The buildbot x86 Gentoo Non-Debug with X 3.x has failed when building commit d94af3f.

What do you need to do:

  1. Don't panic.
  2. Check the buildbot page in the devguide if you don't know what the buildbots are or how they work.
  3. Go to the page of the buildbot that failed (https://buildbot.python.org/all/#builders/188/builds/1280) and take a look at the build logs.
  4. Check if the failure is related to this commit (d94af3f) or if it is a false positive.
  5. If the failure is related to this commit, please, reflect that on the issue and make a new Pull Request with a fix.

You can take a look at the buildbot page here:

https://buildbot.python.org/all/#builders/188/builds/1280

Failed tests:

  • test_dbm_ndbm

Failed subtests:

  • test_keys - test.test_dbm_ndbm.DbmTestCase
  • test_nonascii_filename - test.test_dbm_ndbm.DbmTestCase
  • test_empty_value - test.test_dbm_ndbm.DbmTestCase
  • test_write_readonly_file - test.test_dbm_ndbm.DbmTestCase
  • test_unicode - test.test_dbm_ndbm.DbmTestCase
  • test_modes - test.test_dbm_ndbm.DbmTestCase
  • test_nonexisting_file - test.test_dbm_ndbm.DbmTestCase
  • test_context_manager - test.test_dbm_ndbm.DbmTestCase
  • test_bytes - test.test_dbm_ndbm.DbmTestCase

Summary of the results of the build (if available):

== Tests result: FAILURE then FAILURE ==

413 tests OK.

10 slowest tests:

  • test_peg_generator: 16 min 57 sec
  • test_concurrent_futures: 5 min 4 sec
  • test_multiprocessing_spawn: 3 min 36 sec
  • test_asyncio: 3 min 4 sec
  • test_tokenize: 2 min 25 sec
  • test_lib2to3: 2 min 9 sec
  • test_unparse: 2 min 3 sec
  • test_multiprocessing_forkserver: 1 min 40 sec
  • test_regrtest: 1 min 35 sec
  • test_unicodedata: 1 min 30 sec

1 test failed:
test_dbm_ndbm

9 tests skipped:
test_devpoll test_ioctl test_kqueue test_msilib test_startfile
test_winconsoleio test_winreg test_winsound test_zipfile64

1 re-run test:
test_dbm_ndbm

Total duration: 41 min 46 sec

Click to see traceback logs
Traceback (most recent call last):
  File "/buildbot/buildarea/cpython/3.x.ware-gentoo-x86.nondebug/build/Lib/test/test_dbm_ndbm.py", line 68, in test_context_manager
    self.assertEqual(list(db.keys()), [b"ndbm context manager"])
AssertionError: Lists differ: [b'bytes key \xbd', b'ndbm context manager'] != [b'ndbm context manager']


Traceback (most recent call last):
  File "/buildbot/buildarea/cpython/3.x.ware-gentoo-x86.nondebug/build/Lib/test/test_dbm_ndbm.py", line 23, in test_keys
    self.assertEqual(self.d.keys(), [])
AssertionError: Lists differ: [b'bytes key \xbd', b'ndbm context manager'] != []


Traceback (most recent call last):
  File "/buildbot/buildarea/cpython/3.x.ware-gentoo-x86.nondebug/build/Lib/test/test_dbm_ndbm.py", line 111, in test_nonascii_filename
    self.addCleanup(support.unlink, filename + suffix)
AttributeError: module 'test.support' has no attribute 'unlink'


Traceback (most recent call last):
  File "/buildbot/buildarea/cpython/3.x.ware-gentoo-x86.nondebug/build/Lib/test/test_dbm_ndbm.py", line 19, in tearDown
    support.unlink(self.filename + suffix)
AttributeError: module 'test.support' has no attribute 'unlink'


Traceback (most recent call last):
  File "/buildbot/buildarea/cpython/3.x.ware-gentoo-x86.nondebug/build/Lib/test/test_dbm_ndbm.py", line 46, in test_empty_value
    self.assertEqual(self.d.keys(), [])
AssertionError: Lists differ: [b'bytes key \xbd', b'ndbm context manager'] != []

@bedevere-bot
Copy link

⚠️⚠️⚠️ Buildbot failure ⚠️⚠️⚠️

Hi! The buildbot AMD64 Fedora Stable LTO + PGO 3.x has failed when building commit d94af3f.

What do you need to do:

  1. Don't panic.
  2. Check the buildbot page in the devguide if you don't know what the buildbots are or how they work.
  3. Go to the page of the buildbot that failed (https://buildbot.python.org/all/#builders/64/builds/1200) and take a look at the build logs.
  4. Check if the failure is related to this commit (d94af3f) or if it is a false positive.
  5. If the failure is related to this commit, please, reflect that on the issue and make a new Pull Request with a fix.

You can take a look at the buildbot page here:

https://buildbot.python.org/all/#builders/64/builds/1200

Failed tests:

  • test_dbm_ndbm

Failed subtests:

  • test_keys - test.test_dbm_ndbm.DbmTestCase
  • test_nonascii_filename - test.test_dbm_ndbm.DbmTestCase
  • test_empty_value - test.test_dbm_ndbm.DbmTestCase
  • test_write_readonly_file - test.test_dbm_ndbm.DbmTestCase
  • test_unicode - test.test_dbm_ndbm.DbmTestCase
  • test_modes - test.test_dbm_ndbm.DbmTestCase
  • test_nonexisting_file - test.test_dbm_ndbm.DbmTestCase
  • test_context_manager - test.test_dbm_ndbm.DbmTestCase
  • test_bytes - test.test_dbm_ndbm.DbmTestCase

Summary of the results of the build (if available):

== Tests result: FAILURE then FAILURE ==

408 tests OK.

10 slowest tests:

  • test_peg_generator: 5 min 18 sec
  • test_concurrent_futures: 2 min 33 sec
  • test_multiprocessing_spawn: 1 min 15 sec
  • test_multiprocessing_forkserver: 1 min 4 sec
  • test_multiprocessing_fork: 53.3 sec
  • test_asyncio: 52.9 sec
  • test_signal: 46.6 sec
  • test_io: 40.2 sec
  • test_tokenize: 35.1 sec
  • test_unparse: 35.1 sec

1 test failed:
test_dbm_ndbm

14 tests skipped:
test_devpoll test_gdb test_ioctl test_kqueue test_msilib
test_ossaudiodev test_startfile test_tix test_tk test_ttk_guionly
test_winconsoleio test_winreg test_winsound test_zipfile64

1 re-run test:
test_dbm_ndbm

Total duration: 6 min 22 sec

Click to see traceback logs
Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.lto-pgo/build/Lib/test/test_dbm_ndbm.py", line 23, in test_keys
    self.assertEqual(self.d.keys(), [])
AssertionError: Lists differ: [b'bytes key \xbd', b'ndbm context manager'] != []


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.lto-pgo/build/Lib/test/test_dbm_ndbm.py", line 46, in test_empty_value
    self.assertEqual(self.d.keys(), [])
AssertionError: Lists differ: [b'bytes key \xbd', b'ndbm context manager'] != []


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.lto-pgo/build/Lib/test/test_dbm_ndbm.py", line 111, in test_nonascii_filename
    self.addCleanup(support.unlink, filename + suffix)
AttributeError: module 'test.support' has no attribute 'unlink'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.lto-pgo/build/Lib/test/test_dbm_ndbm.py", line 19, in tearDown
    support.unlink(self.filename + suffix)
AttributeError: module 'test.support' has no attribute 'unlink'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-x86_64.lto-pgo/build/Lib/test/test_dbm_ndbm.py", line 68, in test_context_manager
    self.assertEqual(list(db.keys()), [b"ndbm context manager"])
AssertionError: Lists differ: [b'bytes key \xbd', b'ndbm context manager'] != [b'ndbm context manager']

@bedevere-bot
Copy link

⚠️⚠️⚠️ Buildbot failure ⚠️⚠️⚠️

Hi! The buildbot PPC64LE RHEL8 LTO 3.x has failed when building commit d94af3f.

What do you need to do:

  1. Don't panic.
  2. Check the buildbot page in the devguide if you don't know what the buildbots are or how they work.
  3. Go to the page of the buildbot that failed (https://buildbot.python.org/all/#builders/356/builds/805) and take a look at the build logs.
  4. Check if the failure is related to this commit (d94af3f) or if it is a false positive.
  5. If the failure is related to this commit, please, reflect that on the issue and make a new Pull Request with a fix.

You can take a look at the buildbot page here:

https://buildbot.python.org/all/#builders/356/builds/805

Failed tests:

  • test_dbm_ndbm

Failed subtests:

  • test_keys - test.test_dbm_ndbm.DbmTestCase
  • test_nonascii_filename - test.test_dbm_ndbm.DbmTestCase
  • test_empty_value - test.test_dbm_ndbm.DbmTestCase
  • test_write_readonly_file - test.test_dbm_ndbm.DbmTestCase
  • test_unicode - test.test_dbm_ndbm.DbmTestCase
  • test_modes - test.test_dbm_ndbm.DbmTestCase
  • test_nonexisting_file - test.test_dbm_ndbm.DbmTestCase
  • test_context_manager - test.test_dbm_ndbm.DbmTestCase
  • test_bytes - test.test_dbm_ndbm.DbmTestCase

Summary of the results of the build (if available):

== Tests result: FAILURE then FAILURE ==

409 tests OK.

10 slowest tests:

  • test_peg_generator: 5 min
  • test_gdb: 2 min 49 sec
  • test_concurrent_futures: 2 min 47 sec
  • test_tokenize: 1 min 19 sec
  • test_multiprocessing_spawn: 1 min 19 sec
  • test_unparse: 1 min 8 sec
  • test_lib2to3: 1 min 6 sec
  • test_multiprocessing_forkserver: 1 min 4 sec
  • test_asyncio: 57.9 sec
  • test_multiprocessing_fork: 54.7 sec

1 test failed:
test_dbm_ndbm

13 tests skipped:
test_devpoll test_ioctl test_kqueue test_msilib test_ossaudiodev
test_startfile test_tix test_tk test_ttk_guionly test_winconsoleio
test_winreg test_winsound test_zipfile64

1 re-run test:
test_dbm_ndbm

Total duration: 5 min 7 sec

Click to see traceback logs
Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.x.cstratak-RHEL8-ppc64le.lto/build/Lib/test/test_dbm_ndbm.py", line 68, in test_context_manager
    self.assertEqual(list(db.keys()), [b"ndbm context manager"])
AssertionError: Lists differ: [b'ndbm context manager', b'bytes key \xbd'] != [b'ndbm context manager']


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.x.cstratak-RHEL8-ppc64le.lto/build/Lib/test/test_dbm_ndbm.py", line 19, in tearDown
    support.unlink(self.filename + suffix)
AttributeError: module 'test.support' has no attribute 'unlink'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.x.cstratak-RHEL8-ppc64le.lto/build/Lib/test/test_dbm_ndbm.py", line 111, in test_nonascii_filename
    self.addCleanup(support.unlink, filename + suffix)
AttributeError: module 'test.support' has no attribute 'unlink'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.x.cstratak-RHEL8-ppc64le.lto/build/Lib/test/test_dbm_ndbm.py", line 46, in test_empty_value
    self.assertEqual(self.d.keys(), [])
AssertionError: Lists differ: [b'ndbm context manager', b'bytes key \xbd'] != []


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.x.cstratak-RHEL8-ppc64le.lto/build/Lib/test/test_dbm_ndbm.py", line 23, in test_keys
    self.assertEqual(self.d.keys(), [])
AssertionError: Lists differ: [b'ndbm context manager', b'bytes key \xbd'] != []

@bedevere-bot
Copy link

⚠️⚠️⚠️ Buildbot failure ⚠️⚠️⚠️

Hi! The buildbot s390x Fedora LTO + PGO 3.x has failed when building commit d94af3f.

What do you need to do:

  1. Don't panic.
  2. Check the buildbot page in the devguide if you don't know what the buildbots are or how they work.
  3. Go to the page of the buildbot that failed (https://buildbot.python.org/all/#builders/460/builds/856) and take a look at the build logs.
  4. Check if the failure is related to this commit (d94af3f) or if it is a false positive.
  5. If the failure is related to this commit, please, reflect that on the issue and make a new Pull Request with a fix.

You can take a look at the buildbot page here:

https://buildbot.python.org/all/#builders/460/builds/856

Failed tests:

  • test_dbm_ndbm

Failed subtests:

  • test_keys - test.test_dbm_ndbm.DbmTestCase
  • test_nonascii_filename - test.test_dbm_ndbm.DbmTestCase
  • test_empty_value - test.test_dbm_ndbm.DbmTestCase
  • test_write_readonly_file - test.test_dbm_ndbm.DbmTestCase
  • test_unicode - test.test_dbm_ndbm.DbmTestCase
  • test_modes - test.test_dbm_ndbm.DbmTestCase
  • test_nonexisting_file - test.test_dbm_ndbm.DbmTestCase
  • test_context_manager - test.test_dbm_ndbm.DbmTestCase
  • test_bytes - test.test_dbm_ndbm.DbmTestCase

Summary of the results of the build (if available):

== Tests result: FAILURE then FAILURE ==

406 tests OK.

10 slowest tests:

  • test_peg_generator: 4 min 45 sec
  • test_concurrent_futures: 2 min 36 sec
  • test_multiprocessing_forkserver: 1 min 4 sec
  • test_multiprocessing_spawn: 1 min 4 sec
  • test_multiprocessing_fork: 52.9 sec
  • test_signal: 46.7 sec
  • test_asyncio: 42.4 sec
  • test_io: 34.8 sec
  • test_pydoc: 31.0 sec
  • test_tokenize: 28.0 sec

1 test failed:
test_dbm_ndbm

16 tests skipped:
test_devpoll test_gdb test_ioctl test_kqueue test_msilib test_nis
test_ossaudiodev test_readline test_startfile test_tix test_tk
test_ttk_guionly test_winconsoleio test_winreg test_winsound
test_zipfile64

1 re-run test:
test_dbm_ndbm

Total duration: 5 min 31 sec

Click to see traceback logs
Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.x.edelsohn-fedora-z.lto-pgo/build/Lib/test/test_dbm_ndbm.py", line 23, in test_keys
    self.assertEqual(self.d.keys(), [])
AssertionError: Lists differ: [b'ndbm context manager', b'bytes key \xbd'] != []


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.x.edelsohn-fedora-z.lto-pgo/build/Lib/test/test_dbm_ndbm.py", line 111, in test_nonascii_filename
    self.addCleanup(support.unlink, filename + suffix)
AttributeError: module 'test.support' has no attribute 'unlink'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.x.edelsohn-fedora-z.lto-pgo/build/Lib/test/test_dbm_ndbm.py", line 46, in test_empty_value
    self.assertEqual(self.d.keys(), [])
AssertionError: Lists differ: [b'ndbm context manager', b'bytes key \xbd'] != []


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.x.edelsohn-fedora-z.lto-pgo/build/Lib/test/test_dbm_ndbm.py", line 68, in test_context_manager
    self.assertEqual(list(db.keys()), [b"ndbm context manager"])
AssertionError: Lists differ: [b'ndbm context manager', b'bytes key \xbd'] != [b'ndbm context manager']


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.x.edelsohn-fedora-z.lto-pgo/build/Lib/test/test_dbm_ndbm.py", line 19, in tearDown
    support.unlink(self.filename + suffix)
AttributeError: module 'test.support' has no attribute 'unlink'

@shihai1991
Copy link
Member Author

#21785 will fix the buildbot's error report.

@bedevere-bot
Copy link

⚠️⚠️⚠️ Buildbot failure ⚠️⚠️⚠️

Hi! The buildbot s390x Fedora LTO 3.x has failed when building commit d94af3f.

What do you need to do:

  1. Don't panic.
  2. Check the buildbot page in the devguide if you don't know what the buildbots are or how they work.
  3. Go to the page of the buildbot that failed (https://buildbot.python.org/all/#builders/500/builds/853) and take a look at the build logs.
  4. Check if the failure is related to this commit (d94af3f) or if it is a false positive.
  5. If the failure is related to this commit, please, reflect that on the issue and make a new Pull Request with a fix.

You can take a look at the buildbot page here:

https://buildbot.python.org/all/#builders/500/builds/853

Failed tests:

  • test_dbm_ndbm

Failed subtests:

  • test_keys - test.test_dbm_ndbm.DbmTestCase
  • test_nonascii_filename - test.test_dbm_ndbm.DbmTestCase
  • test_empty_value - test.test_dbm_ndbm.DbmTestCase
  • test_write_readonly_file - test.test_dbm_ndbm.DbmTestCase
  • test_unicode - test.test_dbm_ndbm.DbmTestCase
  • test_modes - test.test_dbm_ndbm.DbmTestCase
  • test_nonexisting_file - test.test_dbm_ndbm.DbmTestCase
  • test_context_manager - test.test_dbm_ndbm.DbmTestCase
  • test_bytes - test.test_dbm_ndbm.DbmTestCase

Summary of the results of the build (if available):

== Tests result: FAILURE then FAILURE ==

406 tests OK.

10 slowest tests:

  • test_peg_generator: 3 min 44 sec
  • test_concurrent_futures: 2 min 38 sec
  • test_multiprocessing_spawn: 1 min 5 sec
  • test_nntplib: 1 min 4 sec
  • test_multiprocessing_forkserver: 1 min 2 sec
  • test_multiprocessing_fork: 53.2 sec
  • test_signal: 46.7 sec
  • test_asyncio: 46.3 sec
  • test_io: 34.9 sec
  • test_tokenize: 32.5 sec

1 test failed:
test_dbm_ndbm

16 tests skipped:
test_devpoll test_gdb test_ioctl test_kqueue test_msilib test_nis
test_ossaudiodev test_readline test_startfile test_tix test_tk
test_ttk_guionly test_winconsoleio test_winreg test_winsound
test_zipfile64

1 re-run test:
test_dbm_ndbm

Total duration: 4 min 55 sec

Click to see traceback logs
Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.x.edelsohn-fedora-z.lto/build/Lib/test/test_dbm_ndbm.py", line 111, in test_nonascii_filename
    self.addCleanup(support.unlink, filename + suffix)
AttributeError: module 'test.support' has no attribute 'unlink'


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.x.edelsohn-fedora-z.lto/build/Lib/test/test_dbm_ndbm.py", line 46, in test_empty_value
    self.assertEqual(self.d.keys(), [])
AssertionError: Lists differ: [b'ndbm context manager', b'bytes key \xbd'] != []


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.x.edelsohn-fedora-z.lto/build/Lib/test/test_dbm_ndbm.py", line 68, in test_context_manager
    self.assertEqual(list(db.keys()), [b"ndbm context manager"])
AssertionError: Lists differ: [b'ndbm context manager', b'bytes key \xbd'] != [b'ndbm context manager']


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.x.edelsohn-fedora-z.lto/build/Lib/test/test_dbm_ndbm.py", line 23, in test_keys
    self.assertEqual(self.d.keys(), [])
AssertionError: Lists differ: [b'ndbm context manager', b'bytes key \xbd'] != []


Traceback (most recent call last):
  File "/home/dje/cpython-buildarea/3.x.edelsohn-fedora-z.lto/build/Lib/test/test_dbm_ndbm.py", line 19, in tearDown
    support.unlink(self.filename + suffix)
AttributeError: module 'test.support' has no attribute 'unlink'

@bedevere-bot
Copy link

⚠️⚠️⚠️ Buildbot failure ⚠️⚠️⚠️

Hi! The buildbot PPC64LE Fedora Stable LTO + PGO 3.x has failed when building commit d94af3f.

What do you need to do:

  1. Don't panic.
  2. Check the buildbot page in the devguide if you don't know what the buildbots are or how they work.
  3. Go to the page of the buildbot that failed (https://buildbot.python.org/all/#builders/449/builds/724) and take a look at the build logs.
  4. Check if the failure is related to this commit (d94af3f) or if it is a false positive.
  5. If the failure is related to this commit, please, reflect that on the issue and make a new Pull Request with a fix.

You can take a look at the buildbot page here:

https://buildbot.python.org/all/#builders/449/builds/724

Failed tests:

  • test_dbm_ndbm

Failed subtests:

  • test_keys - test.test_dbm_ndbm.DbmTestCase
  • test_nonascii_filename - test.test_dbm_ndbm.DbmTestCase
  • test_empty_value - test.test_dbm_ndbm.DbmTestCase
  • test_write_readonly_file - test.test_dbm_ndbm.DbmTestCase
  • test_unicode - test.test_dbm_ndbm.DbmTestCase
  • test_modes - test.test_dbm_ndbm.DbmTestCase
  • test_nonexisting_file - test.test_dbm_ndbm.DbmTestCase
  • test_context_manager - test.test_dbm_ndbm.DbmTestCase
  • test_bytes - test.test_dbm_ndbm.DbmTestCase

Summary of the results of the build (if available):

== Tests result: FAILURE then FAILURE ==

408 tests OK.

10 slowest tests:

  • test_peg_generator: 5 min 21 sec
  • test_concurrent_futures: 2 min 33 sec
  • test_multiprocessing_spawn: 1 min 10 sec
  • test_multiprocessing_forkserver: 1 min 5 sec
  • test_tokenize: 1 min 2 sec
  • test_multiprocessing_fork: 58.6 sec
  • test_asyncio: 49.9 sec
  • test_signal: 46.5 sec
  • test_lib2to3: 40.8 sec
  • test_unparse: 39.6 sec

1 test failed:
test_dbm_ndbm

14 tests skipped:
test_devpoll test_gdb test_ioctl test_kqueue test_msilib
test_ossaudiodev test_startfile test_tix test_tk test_ttk_guionly
test_winconsoleio test_winreg test_winsound test_zipfile64

1 re-run test:
test_dbm_ndbm

Total duration: 7 min 5 sec

Click to see traceback logs
Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.lto-pgo/build/Lib/test/test_dbm_ndbm.py", line 111, in test_nonascii_filename
    self.addCleanup(support.unlink, filename + suffix)
AttributeError: module 'test.support' has no attribute 'unlink'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.lto-pgo/build/Lib/test/test_dbm_ndbm.py", line 68, in test_context_manager
    self.assertEqual(list(db.keys()), [b"ndbm context manager"])
AssertionError: Lists differ: [b'ndbm context manager', b'bytes key \xbd'] != [b'ndbm context manager']


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.lto-pgo/build/Lib/test/test_dbm_ndbm.py", line 19, in tearDown
    support.unlink(self.filename + suffix)
AttributeError: module 'test.support' has no attribute 'unlink'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.lto-pgo/build/Lib/test/test_dbm_ndbm.py", line 23, in test_keys
    self.assertEqual(self.d.keys(), [])
AssertionError: Lists differ: [b'ndbm context manager', b'bytes key \xbd'] != []


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.lto-pgo/build/Lib/test/test_dbm_ndbm.py", line 46, in test_empty_value
    self.assertEqual(self.d.keys(), [])
AssertionError: Lists differ: [b'ndbm context manager', b'bytes key \xbd'] != []

@bedevere-bot
Copy link

⚠️⚠️⚠️ Buildbot failure ⚠️⚠️⚠️

Hi! The buildbot PPC64LE Fedora Stable LTO 3.x has failed when building commit d94af3f.

What do you need to do:

  1. Don't panic.
  2. Check the buildbot page in the devguide if you don't know what the buildbots are or how they work.
  3. Go to the page of the buildbot that failed (https://buildbot.python.org/all/#builders/376/builds/811) and take a look at the build logs.
  4. Check if the failure is related to this commit (d94af3f) or if it is a false positive.
  5. If the failure is related to this commit, please, reflect that on the issue and make a new Pull Request with a fix.

You can take a look at the buildbot page here:

https://buildbot.python.org/all/#builders/376/builds/811

Failed tests:

  • test_dbm_ndbm

Failed subtests:

  • test_keys - test.test_dbm_ndbm.DbmTestCase
  • test_nonascii_filename - test.test_dbm_ndbm.DbmTestCase
  • test_empty_value - test.test_dbm_ndbm.DbmTestCase
  • test_write_readonly_file - test.test_dbm_ndbm.DbmTestCase
  • test_unicode - test.test_dbm_ndbm.DbmTestCase
  • test_modes - test.test_dbm_ndbm.DbmTestCase
  • test_nonexisting_file - test.test_dbm_ndbm.DbmTestCase
  • test_context_manager - test.test_dbm_ndbm.DbmTestCase
  • test_bytes - test.test_dbm_ndbm.DbmTestCase

Summary of the results of the build (if available):

== Tests result: FAILURE then FAILURE ==

409 tests OK.

10 slowest tests:

  • test_peg_generator: 4 min 53 sec
  • test_concurrent_futures: 2 min 46 sec
  • test_gdb: 1 min 57 sec
  • test_multiprocessing_spawn: 1 min 28 sec
  • test_tokenize: 1 min 16 sec
  • test_multiprocessing_forkserver: 1 min 10 sec
  • test_multiprocessing_fork: 1 min
  • test_unparse: 56.3 sec
  • test_asyncio: 55.5 sec
  • test_lib2to3: 48.6 sec

1 test failed:
test_dbm_ndbm

13 tests skipped:
test_devpoll test_ioctl test_kqueue test_msilib test_ossaudiodev
test_startfile test_tix test_tk test_ttk_guionly test_winconsoleio
test_winreg test_winsound test_zipfile64

1 re-run test:
test_dbm_ndbm

Total duration: 5 min

Click to see traceback logs
Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.lto/build/Lib/test/test_dbm_ndbm.py", line 23, in test_keys
    self.assertEqual(self.d.keys(), [])
AssertionError: Lists differ: [b'ndbm context manager', b'bytes key \xbd'] != []


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.lto/build/Lib/test/test_dbm_ndbm.py", line 19, in tearDown
    support.unlink(self.filename + suffix)
AttributeError: module 'test.support' has no attribute 'unlink'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.lto/build/Lib/test/test_dbm_ndbm.py", line 46, in test_empty_value
    self.assertEqual(self.d.keys(), [])
AssertionError: Lists differ: [b'ndbm context manager', b'bytes key \xbd'] != []


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.lto/build/Lib/test/test_dbm_ndbm.py", line 111, in test_nonascii_filename
    self.addCleanup(support.unlink, filename + suffix)
AttributeError: module 'test.support' has no attribute 'unlink'


Traceback (most recent call last):
  File "/home/buildbot/buildarea/3.x.cstratak-fedora-stable-ppc64le.lto/build/Lib/test/test_dbm_ndbm.py", line 68, in test_context_manager
    self.assertEqual(list(db.keys()), [b"ndbm context manager"])
AssertionError: Lists differ: [b'ndbm context manager', b'bytes key \xbd'] != [b'ndbm context manager']

@pablogsal
Copy link
Member

This PR has broken a considerable amount of build bots, so we would need to revert it if is not fixed in 24 hours

@pablogsal
Copy link
Member

This PR has broken a considerable amount of build bots, so we would need to revert it if is not fixed in 24 hours

Whops, sorry I just saw that this is being fixed here #21785, apologies then!

@vstinner
Copy link
Member

vstinner commented Aug 8, 2020

Since tests passed on Linux and Windows in the pre-commit CI, I was confident to merge the change. I didn't expect this amount of buildbot failures! I should have use the buildbot label :-/

Hopefully, it should be now fixed by #21785.

shihai1991 added a commit to shihai1991/cpython that referenced this pull request Aug 20, 2020
xzy3 pushed a commit to xzy3/cpython that referenced this pull request Oct 18, 2020
facebook-github-bot pushed a commit to facebookincubator/cinder that referenced this pull request Aug 11, 2022
Summary: The alias was removed in python/cpython#21771.

Reviewed By: tekknolagi

Differential Revision: D38540106

fbshipit-source-id: 3823c48
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants