Issue3401
Created on 2008-07-17 23:53 by benjamin.peterson, last changed 2022-04-11 14:56 by admin. This issue is now closed.
| Messages (5) | |||
|---|---|---|---|
| msg69929 - (view) | Author: Benjamin Peterson (benjamin.peterson) * ![]() |
Date: 2008-07-17 23:53 | |
The following errors pop up on the Windows trunk build bot because the
LIB environmental variable is unicode not str. This causes the
validation to fail.
Re-running test 'test_wsgiref' in verbose mode
testAbstractMethods (test.test_wsgiref.HandlerTests) ... ok
testBasicErrorOutput (test.test_wsgiref.HandlerTests) ... ok
testCGIEnviron (test.test_wsgiref.HandlerTests) ... ok
testContentLength (test.test_wsgiref.HandlerTests) ... ok
testEnviron (test.test_wsgiref.HandlerTests) ... ERROR
testErrorAfterOutput (test.test_wsgiref.HandlerTests) ... ok
testHeaderFormats (test.test_wsgiref.HandlerTests) ... ok
testScheme (test.test_wsgiref.HandlerTests) ... ok
testExtras (test.test_wsgiref.HeaderTests) ... ok
testMappingInterface (test.test_wsgiref.HeaderTests) ... ok
testRequireList (test.test_wsgiref.HeaderTests) ... ok
test_plain_hello (test.test_wsgiref.IntegrationTests) ... ok
test_simple_validation_error (test.test_wsgiref.IntegrationTests) ... FAIL
test_validated_hello (test.test_wsgiref.IntegrationTests) ... FAIL
testAppURIs (test.test_wsgiref.UtilityTests) ... ok
testCrossDefaults (test.test_wsgiref.UtilityTests) ... ok
testDefaults (test.test_wsgiref.UtilityTests) ... ok
testFileWrapper (test.test_wsgiref.UtilityTests) ... ok
testGuessScheme (test.test_wsgiref.UtilityTests) ... ok
testHopByHop (test.test_wsgiref.UtilityTests) ... ok
testNormalizedShifts (test.test_wsgiref.UtilityTests) ... ok
testReqURIs (test.test_wsgiref.UtilityTests) ... ok
testSimpleShifts (test.test_wsgiref.UtilityTests) ... ok
======================================================================
ERROR: testEnviron (test.test_wsgiref.HandlerTests)
----------------------------------------------------------------------
Traceback (most recent call last):
File
"E:\cygwin\home\db3l\buildarea\trunk.bolen-windows\build\lib\test\test_wsgiref.py",
line 437, in testEnviron
self.checkOSEnviron(h)
File
"E:\cygwin\home\db3l\buildarea\trunk.bolen-windows\build\lib\test\test_wsgiref.py",
line 429, in checkOSEnviron
self.assertEqual(env[k],v)
KeyError: 'AUTH_TYPE'
======================================================================
FAIL: test_simple_validation_error (test.test_wsgiref.IntegrationTests)
----------------------------------------------------------------------
Traceback (most recent call last):
File
"E:\cygwin\home\db3l\buildarea\trunk.bolen-windows\build\lib\test\test_wsgiref.py",
line 157, in test_simple_validation_error
"AssertionError: Headers (('Content-Type', 'text/plain')) must"
AssertionError: "AssertionError: Environmental variable LIB is not a
string: <type 'unicode'> (value: u'C:\\\\Program Files\\\\Microsoft
Visual Studio 9.0\\\\VC\\\\LIB;C:\\\\Program Files\\\\Microsoft
SDKs\\\\Windows\\\\v6.0A\\\\lib;c:\\\\program files\\\\microsoft visual
studio .NET 2003\\\\vc7\\\\atlmfc\\\\lib;c:\\\\program
files\\\\microsoft visual studio .NET 2003\\\\vc7\\\\lib;c:\\\\program
files\\\\microsoft visual studio .NET
2003\\\\vc7\\\\PlatformSDK\\\\lib;C:\\\\Program Files\\\\Microsoft
Visual Studio .NET 2003\\\\SDK\\\\v1.1\\\\Lib\\\\')" != "AssertionError:
Headers (('Content-Type', 'text/plain')) must be of type list: <type
'tuple'>"
======================================================================
FAIL: test_validated_hello (test.test_wsgiref.IntegrationTests)
----------------------------------------------------------------------
Traceback (most recent call last):
File
"E:\cygwin\home\db3l\buildarea\trunk.bolen-windows\build\lib\test\test_wsgiref.py",
line 145, in test_validated_hello
self.check_hello(out, has_length=False)
File
"E:\cygwin\home\db3l\buildarea\trunk.bolen-windows\build\lib\test\test_wsgiref.py",
line 134, in check_hello
"\r\n"
AssertionError: 'HTTP/1.0 500 Dude, this is whack!\r\nDate: Thu, 17 Jul
2008 22:45:20 GMT\r\nServer: WSGIServer/0.1
Python/2.6b1+\r\nContent-Type: text/plain\r\nContent-Length: 59\r\n\r\nA
server error occurred. Please contact the administrator.' != 'HTTP/1.0
200 OK\r\nServer: WSGIServer/0.1 Python/2.6b1+\r\nContent-Type:
text/plain\r\nDate: Mon, 05 Jun 2006 18:49:54 GMT\r\n\r\nHello, world!'
|
|||
| msg109622 - (view) | Author: Mark Lawrence (BreamoreBoy) * | Date: 2010-07-08 22:24 | |
I'd guess that this has already been fixed as it relates to the Windows buildbot but has slipped under the radar. |
|||
| msg111998 - (view) | Author: Mark Lawrence (BreamoreBoy) * | Date: 2010-07-29 20:39 | |
As nobody has responded to msg109622 I'll close unless anyone objects. |
|||
| msg112012 - (view) | Author: Brian Curtin (brian.curtin) * ![]() |
Date: 2010-07-29 21:29 | |
Unless this is confirmed to have been fixed, it should not be closed. |
|||
| msg278383 - (view) | Author: R. David Murray (r.david.murray) * ![]() |
Date: 2016-10-09 17:58 | |
Since this is a buildbot error report and we don't release unless the buildbots in the stable set are green, I think we can close this now :) |
|||
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2022-04-11 14:56:36 | admin | set | github: 47651 |
| 2016-10-09 17:58:45 | r.david.murray | set | status: open -> closed nosy:
+ r.david.murray resolution: out of date |
| 2014-02-03 19:19:18 | BreamoreBoy | set | nosy:
- BreamoreBoy |
| 2010-07-29 21:29:15 | brian.curtin | set | status: pending -> open nosy: + brian.curtin messages: + msg112012 |
| 2010-07-29 20:39:01 | BreamoreBoy | set | status: open -> pending priority: high -> normal messages: + msg111998 |
| 2010-07-08 22:24:15 | BreamoreBoy | set | nosy:
+ BreamoreBoy messages: + msg109622 |
| 2009-05-16 20:33:02 | ajaksu2 | set | stage: test needed |
| 2008-07-17 23:58:08 | georg.brandl | set | assignee: pje nosy: + pje |
| 2008-07-17 23:54:09 | benjamin.peterson | set | priority: high type: behavior components: + Library (Lib) versions: + Python 2.6 |
| 2008-07-17 23:53:34 | benjamin.peterson | create | |
