diff options
| author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2022-12-03 17:18:23 (GMT) |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-12-03 17:18:23 (GMT) |
| commit | 4710a7589aee48bec9099af308bf5938285ba336 (patch) | |
| tree | d02c8d1c771a3c6183e933117247490b5da66df0 | |
| parent | 9707bf228e008485a3fbb63aa7ee28cf88014f91 (diff) | |
| download | cpython-4710a7589aee48bec9099af308bf5938285ba336.zip cpython-4710a7589aee48bec9099af308bf5938285ba336.tar.gz cpython-4710a7589aee48bec9099af308bf5938285ba336.tar.bz2 | |
gh-99934: test_marshal.py: add more elements in test_deterministic_sets (GH-99935)
Existing elements do produce different output on x86_64, but they
do not on x86. Let's make the data longer to ensure it differs.
(cherry picked from commit c68573b339320409b038501fdd7d4f8a56766275)
Co-authored-by: Alexander Kanavin <alex.kanavin@gmail.com>
| -rw-r--r-- | Lib/test/test_marshal.py | 2 | ||||
| -rw-r--r-- | Misc/NEWS.d/next/Tests/2022-12-01-18-55-18.gh-issue-99934.Ox3Fqf.rst | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/Lib/test/test_marshal.py b/Lib/test/test_marshal.py index f5956fc..a1a91f6 100644 --- a/Lib/test/test_marshal.py +++ b/Lib/test/test_marshal.py @@ -354,7 +354,7 @@ class BugsTestCase(unittest.TestCase): for elements in ( "float('nan'), b'a', b'b', b'c', 'x', 'y', 'z'", # Also test for bad interactions with backreferencing: - "('Spam', 0), ('Spam', 1), ('Spam', 2)", + "('Spam', 0), ('Spam', 1), ('Spam', 2), ('Spam', 3), ('Spam', 4), ('Spam', 5)", ): s = f"{kind}([{elements}])" with self.subTest(s): diff --git a/Misc/NEWS.d/next/Tests/2022-12-01-18-55-18.gh-issue-99934.Ox3Fqf.rst b/Misc/NEWS.d/next/Tests/2022-12-01-18-55-18.gh-issue-99934.Ox3Fqf.rst new file mode 100644 index 0000000..1b1287c --- /dev/null +++ b/Misc/NEWS.d/next/Tests/2022-12-01-18-55-18.gh-issue-99934.Ox3Fqf.rst @@ -0,0 +1 @@ +Correct test_marsh on (32 bit) x86: test_deterministic sets was failing. |
