[issue9772] test_pep277 failure on AMD64 debian parallel buildbot

2012-07-21 Thread Florent Xicluna

Florent Xicluna florent.xicl...@gmail.com added the comment:

 That appears to be a bug in the NFS server.

So, it's not a Python bug.

--
resolution:  - works for me
status: open - closed

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue9772
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue9772] test_pep277 failure on AMD64 debian parallel buildbot

2010-10-17 Thread Martin v . Löwis

Martin v. Löwis mar...@v.loewis.de added the comment:

That appears to be a bug in the NFS server. When you creat(Gr\303\274-Gott), 
what actually comes out of getdents(3) is Gr\303\274-Gott. This only happens 
with four bytes of non-ASCII - two UTF-8 bytes are correctly reported. We are 
investigating this locally.

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue9772
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue9772] test_pep277 failure on AMD64 debian parallel buildbot

2010-10-13 Thread Antoine Pitrou

Antoine Pitrou pit...@free.fr added the comment:

Actually, the error message is (when interpreted as utf-8):

==
FAIL: test_listdir (test.test_pep277.UnicodeFileTests)
--
Traceback (most recent call last):
  File 
/var/autofs/net/homedir/home/martin.vonloewis/buildarea/3.x.loewis-parallel2/build/Lib/test/test_pep277.py,
 line 157, in test_listdir
self.assertEqual(sf0, sf2)
AssertionError: Items in the first set but not the second:
'@test_29046_tmp/Grüß-Gott'
Items in the second set but not the first:
'@test_29046_tmp/Gr\udcfc\udcdf-Gott'


Which corresponds to utf8 or ascii decoding of Grüß-Gott encoded with latin1:

 Grüß-Gott.encode(latin1).decode(ascii, surrogateescape)
'Gr\udcfc\udcdf-Gott'
 Grüß-Gott.encode(latin1).decode(utf8, surrogateescape)
'Gr\udcfc\udcdf-Gott'

--
nosy: +haypo, loewis, pitrou

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue9772
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue9772] test_pep277 failure on AMD64 debian parallel buildbot

2010-09-04 Thread Florent Xicluna

New submission from Florent Xicluna florent.xicl...@gmail.com:

This failure occurs on AMD64 debian parallel buildbot.
It is not the same failure as OS X Tiger buildbot (issue 8423).


==
FAIL: test_listdir (test.test_pep277.UnicodeFileTests)
--
Traceback (most recent call last):
  File 
/var/autofs/net/homedir/home/martin.vonloewis/buildarea/3.x.loewis-parallel2/build/Lib/test/test_pep277.py,
 line 157, in test_listdir
self.assertEqual(sf0, sf2)
AssertionError: Items in the first set but not the second:
'@test_21179_tmp/Grüß-Gott'
Items in the second set but not the first:
'@test_21179_tmp/Gr\udcfc\udcdf-Gott'

==
FAIL: test_listdir (test.test_pep277.UnicodeNFCFileTests)
--
Traceback (most recent call last):
  File 
/var/autofs/net/homedir/home/martin.vonloewis/buildarea/3.x.loewis-parallel2/build/Lib/test/test_pep277.py,
 line 157, in test_listdir
self.assertEqual(sf0, sf2)
AssertionError: Items in the first set but not the second:
'@test_21179_tmp/Grüß-Gott'
Items in the second set but not the first:
'@test_21179_tmp/Gr\udcfc\udcdf-Gott'

==
FAIL: test_listdir (test.test_pep277.UnicodeNFKCFileTests)
--
Traceback (most recent call last):
  File 
/var/autofs/net/homedir/home/martin.vonloewis/buildarea/3.x.loewis-parallel2/build/Lib/test/test_pep277.py,
 line 157, in test_listdir
self.assertEqual(sf0, sf2)
AssertionError: Items in the first set but not the second:
'@test_21179_tmp/Grüß-Gott'
Items in the second set but not the first:
'@test_21179_tmp/Gr\udcfc\udcdf-Gott'

--
Ran 30 tests in 1.576s


http://www.python.org/dev/buildbot/builders/AMD64%20debian%20parallel%203.x/builds/94/steps/test/logs/stdio

--
components: Tests, Unicode
keywords: buildbot
messages: 115568
nosy: flox
priority: normal
severity: normal
stage: needs patch
status: open
title: test_pep277 failure on AMD64 debian parallel buildbot
type: behavior
versions: Python 2.7, Python 3.2

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue9772
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com