Commit b740f6a0 authored by Georg Brandl's avatar Georg Brandl

Activate two more test cases in test_httpservers.

parent d995e115
...@@ -277,7 +277,7 @@ print "Content-type: text/html" ...@@ -277,7 +277,7 @@ print "Content-type: text/html"
print print
form = cgi.FieldStorage() form = cgi.FieldStorage()
print "%%s, %%s, %%s" % (form.getfirst("spam"), form.getfirst("eggs"),\ print "%%s, %%s, %%s" %% (form.getfirst("spam"), form.getfirst("eggs"),\
form.getfirst("bacon")) form.getfirst("bacon"))
""" """
...@@ -341,8 +341,8 @@ def test_main(verbose=None): ...@@ -341,8 +341,8 @@ def test_main(verbose=None):
try: try:
cwd = os.getcwd() cwd = os.getcwd()
test_support.run_unittest(BaseHTTPServerTestCase, test_support.run_unittest(BaseHTTPServerTestCase,
#SimpleHTTPServerTestCase, SimpleHTTPServerTestCase,
#CGIHTTPServerTestCase CGIHTTPServerTestCase
) )
finally: finally:
os.chdir(cwd) os.chdir(cwd)
......
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