Kaydet (Commit) 0a18552b authored tarafından Guido van Rossum's avatar Guido van Rossum

Add testcases for _winreg segfault (SF 851056).

üst fd25acac
......@@ -10,10 +10,12 @@ test_key_name = "SOFTWARE\\Python Registry Test Key - Delete Me"
test_data = [
("Int Value", 45, REG_DWORD),
("String Val", "A string value", REG_SZ,),
("String Val", "A string value", REG_SZ),
("StringExpand", "The path is %path%", REG_EXPAND_SZ),
("Multi-string", ["Lots", "of", "string", "values"], REG_MULTI_SZ),
("Raw Data", ("binary"+chr(0)+"data"), REG_BINARY),
("Big String", "x"*(512*1024-4), REG_SZ),
("Big Binary", "x"*(1024*1024-4), REG_BINARY),
]
if have_unicode:
test_data+=[
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment