This repository was archived by the owner on Oct 2, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Skip test_aead_aes_gcm during rpmbuild (Fedora)
- Loading branch information
1 parent
0af1240
commit 20f5e82
Showing
2 changed files
with
20 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
diff --git a/Lib/test/test_socket.py b/Lib/test/test_socket.py | ||
index 8992a01..74170f4 100644 | ||
--- a/Lib/test/test_socket.py | ||
+++ b/Lib/test/test_socket.py | ||
@@ -5458,6 +5458,7 @@ class LinuxKernelCryptoAPI(unittest.TestCase): | ||
self.assertEqual(dec, msg * multiplier) | ||
|
||
@support.requires_linux_version(4, 3) # see test_aes_cbc | ||
+ @unittest.skip('Failure on Kernel 4.9+') | ||
def test_aead_aes_gcm(self): | ||
key = bytes.fromhex('c939cc13397c1d37de6ae0e1cb7c423c') | ||
iv = bytes.fromhex('b3d8cc017cbb89b39e0f67e2') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters