Hello All,<br><br><br>I am successfully compiling python 3.3 on FreeBSD 9.0 amd64 architecture. When I run the tests, I get these two test failures ( I trimmed out all the output from test cases that returned ok):<br><br>test_saltedcrypt (test.test_crypt.CryptTestCase) ... FAIL<br>
<br>======================================================================<br>FAIL: test_saltedcrypt (test.test_crypt.CryptTestCase)<br>----------------------------------------------------------------------<br>Traceback (most recent call last):<br>
  File "/usr/home/adam/Python-3.3.0/Lib/test/test_crypt.py", line 23, in test_saltedcrypt<br>    self.assertEqual(len(pw), method.total_size)<br>AssertionError: 60 != 13<br><br>----------------------------------------------------------------------<br>
Ran 4 tests in 0.063s<br><br><br>======================================================================<br>FAIL: test_setegid (test.test_os.PosixUidGidTests)<br>----------------------------------------------------------------------<br>
Traceback (most recent call last):<br>  File "/usr/home/adam/Python-3.3.0/Lib/test/test_os.py", line 1211, in test_setegid<br>    self.assertRaises(os.error, os.setegid, 0)<br>AssertionError: OSError not raised by setegid<br>
<br>======================================================================<br>FAIL: test_setgid (test.test_os.PosixUidGidTests)<br>----------------------------------------------------------------------<br>Traceback (most recent call last):<br>
  File "/usr/home/adam/Python-3.3.0/Lib/test/test_os.py", line 1199, in test_setgid<br>    self.assertRaises(os.error, os.setgid, 0)<br>AssertionError: OSError not raised by setgid<br><br>======================================================================<br>
FAIL: test_setregid (test.test_os.PosixUidGidTests)<br>----------------------------------------------------------------------<br>Traceback (most recent call last):<br>  File "/usr/home/adam/Python-3.3.0/Lib/test/test_os.py", line 1231, in test_setregid<br>
    self.assertRaises(os.error, os.setregid, 0, 0)<br>AssertionError: OSError not raised by setregid<br><br>----------------------------------------------------------------------<br>Ran 124 tests in 2.035s<br><br>FAILED (failures=3, skipped=23)<br>
Warning -- threading._dangling was modified by test_os<br>test test_os failed<br>2 tests failed:<br>    test_crypt test_os<br><br><br>My question is, are these known? Is it safe for me to use this compiled version of python, or will I run into problems if I use those two modules or any code that depends on those? Ideally I'd like to resolve these and submit a port for python3.3 since the most recent FreeBSD port is stuck on 3.2.<br>
<br><br>Thanks!<br>Adam<br>