Add trivial test cases for RAND_add() and RAND_status().

(The rest of the test cases are trivial, so I don't feel too bad.)
This commit is contained in:
Jeremy Hylton 2001-10-18 00:30:14 +00:00
parent de80f2efb5
commit 9f6c37df26
1 changed files with 15 additions and 1 deletions

View File

@ -13,4 +13,18 @@ if not hasattr(socket, "ssl"):
import urllib
urllib.urlopen('https://sf.net')
socket.RAND_status()
try:
socket.RAND_egd(1)
except TypeError:
pass
else:
print "didn't raise TypeError"
socket.RAND_add("this is a random string", 75.0)
f = urllib.urlopen('https://sf.net')
buf = f.read()
f.close()