From: Guido van Rossum Date: Sun, 30 Nov 2003 22:45:03 +0000 (+0000) Subject: Add testcases for _winreg segfault (SF 851056). X-Git-Tag: v2.3.3c1~27 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f69a0b9d89b05ce62bf0a960f598237002ecf4d9;p=thirdparty%2FPython%2Fcpython.git Add testcases for _winreg segfault (SF 851056). --- diff --git a/Lib/test/test_winreg.py b/Lib/test/test_winreg.py index f686c98b812f..3efe4663e8f1 100644 --- a/Lib/test/test_winreg.py +++ b/Lib/test/test_winreg.py @@ -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+=[