mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2025-04-07 10:56:49 +00:00
test_cli: disable generate-keypair test on OS-X, pycryptopp still has a bug
This commit is contained in:
parent
1c89208884
commit
0799e09910
@ -515,6 +515,11 @@ class Admin(unittest.TestCase):
|
||||
return d
|
||||
|
||||
def test_generate_keypair(self):
|
||||
import sys
|
||||
if sys.platform == "darwin":
|
||||
# pycryptopp-0.5.7's ECDSA is broken on OS-X, it raises a C++
|
||||
# exception, which halts the whole process. So skip this test.
|
||||
raise unittest.SkipTest("pycryptopp-0.5.7's ECDSA raises a C++ exception on OS-X")
|
||||
d = self.do_cli("admin", "generate-keypair")
|
||||
def _done( (stdout, stderr) ):
|
||||
lines = stdout.split("\n")
|
||||
|
Loading…
x
Reference in New Issue
Block a user