mirror of
https://github.com/python/cpython.git
synced 2025-07-31 07:04:42 +00:00
Activate two more test cases in test_httpservers.
This commit is contained in:
parent
d995e1150c
commit
b740f6a0c7
1 changed files with 3 additions and 3 deletions
|
@ -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):
|
||||||
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)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue