[issue5435] test_httpservers on Debian Testing

2009-04-02 Thread Michael Zamot
Michael Zamot added the comment: yes it ran with normal user :-) thanks now im enjoying python 3k ;-) 2009/3/23 Facundo Batista > > Facundo Batista added the comment: > > CGI tests shouldn't be run as root, it seems, as it breaks the inherent > protection. > > -- > nosy: +facundobati

[issue5435] test_httpservers on Debian Testing

2009-03-23 Thread Facundo Batista
Facundo Batista added the comment: CGI tests shouldn't be run as root, it seems, as it breaks the inherent protection. -- nosy: +facundobatista resolution: -> invalid status: open -> closed ___ Python tracker

[issue5435] test_httpservers on Debian Testing

2009-03-23 Thread Manuel Kaufmann
Manuel Kaufmann added the comment: I think it isn't a problem / bug, rather than it's a protection method to don't execute this test or cgi stuff with root user. In the middle, it change a userid to 'nobody', then if you are logged in as root, it can change the userid and then you don't have pe

[issue5435] test_httpservers on Debian Testing

2009-03-23 Thread Hirokazu Yamamoto
Hirokazu Yamamoto added the comment: Hmm, I'm using coLinux with root user. (default) Maybe that's difference. -- ___ Python tracker ___ _

[issue5435] test_httpservers on Debian Testing

2009-03-23 Thread Manuel Kaufmann
Manuel Kaufmann added the comment: I downloaded py3k branch and ran the tests with a regular user. All test pass OK. SVN Revision: 70469 -- nosy: +humitos Added file: http://bugs.python.org/file13400/httpservers_test ___ Python tracker

[issue5435] test_httpservers on Debian Testing

2009-03-07 Thread Michael Zamot
Michael Zamot added the comment: I re-download again (maybe its the four time jaja) the python 3.0.1 from the svn and now, it pass all the tests. Thanks to all! ___ Python tracker ___ ___

[issue5435] test_httpservers on Debian Testing

2009-03-07 Thread Michael Zamot
Michael Zamot added the comment: I dont know, it weird, because im running the test as root. I tried in a Stable Lenny, and nothing too ___ Python tracker ___

[issue5435] test_httpservers on Debian Testing

2009-03-07 Thread Hirokazu Yamamoto
Hirokazu Yamamoto added the comment: Probably this is short code to reproduce "permission denied". import os, pwd nobody = pwd.getpwnam('nobody')[2] os.setuid(nobody) open("dummy.txt", "w").write("foo") # permission denied Still I cannot understand what's going on. Is debian more secure than o

[issue5435] test_httpservers on Debian Testing

2009-03-07 Thread Michael Zamot
Michael Zamot added the comment: I tried too yesterday with the svn version, and i get the same error. Is there a solution or im doing something wrong? ___ Python tracker ___ ___

[issue5435] test_httpservers on Debian Testing

2009-03-07 Thread Hirokazu Yamamoto
Hirokazu Yamamoto added the comment: I tried on coLinux(debian) and I got similar errors. But I'm not unix guy, I don't know well what "permission denied" means. debian:~/python-dev/py3k# ./python Lib/test/test_httpservers.py test_command (__main__.BaseHTTPServerTestCase) ... ok test_handler (

[issue5435] test_httpservers on Debian Testing

2009-03-07 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- components: +Library (Lib), Tests -None type: compile error -> behavior ___ Python tracker ___ ___ Pytho

[issue5435] test_httpservers on Debian Testing

2009-03-06 Thread Michael Zamot
New submission from Michael Zamot : Hi, im trying to compile Python 3.0.1 under Debian Testing, and i get an error in the step make test. test_https fails with errno 13. The atach file has the full output. So, what is missing in my computer or what i need to do, to compile it, thanks and sorry f