[issue12333] test_packaging failures under Solaris

2011-08-25 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- resolution: -> fixed stage: needs patch -> committed/rejected status: open -> closed versions: +Python 3.2 ___ Python tracker ___

[issue12333] test_packaging failures under Solaris

2011-08-25 Thread Roundup Robot
Roundup Robot added the comment: New changeset c0ec01c95a73 by Antoine Pitrou in branch '3.2': Issue #12333: fix test_distutils failures under Solaris and derivatives http://hg.python.org/cpython/rev/c0ec01c95a73 New changeset 80f814dca274 by Antoine Pitrou in branch 'default': Issue #12333: fi

[issue12333] test_packaging failures under Solaris

2011-08-25 Thread Éric Araujo
Éric Araujo added the comment: This is strange; TempdirManager.tearDown already changes back to self._olddir (set to os.getcwd() in setUp). -- ___ Python tracker ___ __

[issue12333] test_packaging failures under Solaris

2011-08-24 Thread Charles-François Natali
Charles-François Natali added the comment: More occurrences: http://www.python.org/dev/buildbot/all/builders/sparc solaris10 gcc 3.x/builds/3555/steps/test/logs/stdio """ == ERROR: test_record_extensions (distutils.tests.test_

[issue12333] test_packaging failures under Solaris

2011-06-17 Thread Éric Araujo
Éric Araujo added the comment: Thanks for tackling this while I was offline. -- ___ Python tracker ___ ___ Python-bugs-list mailing l

[issue12333] test_packaging failures under Solaris

2011-06-17 Thread Roundup Robot
Roundup Robot added the comment: New changeset 6e5a9f16d831 by Victor Stinner in branch 'default': Issue #12333: close files before removing the directory http://hg.python.org/cpython/rev/6e5a9f16d831 New changeset 144cea8db9a5 by Victor Stinner in branch 'default': Issue #12333: run tests on t

[issue12333] test_packaging failures under Solaris

2011-06-17 Thread STINNER Victor
STINNER Victor added the comment: 276530424350 fixed the failures on "x86 OpenIndiana 3.x" buildbot. -- nosy: +haypo resolution: -> fixed status: open -> closed ___ Python tracker

[issue12333] test_packaging failures under Solaris

2011-06-17 Thread Roundup Robot
Roundup Robot added the comment: New changeset 276530424350 by Victor Stinner in branch 'default': Issue #12333: restore the previous dir before removing the current directory http://hg.python.org/cpython/rev/276530424350 -- nosy: +python-dev ___ Pyt

[issue12333] test_packaging failures under Solaris

2011-06-14 Thread Éric Araujo
Éric Araujo added the comment: I’m going to change directory before removing the temp dir. -- ___ Python tracker ___ ___ Python-bugs-

[issue12333] test_packaging failures under Solaris

2011-06-14 Thread Antoine Pitrou
New submission from Antoine Pitrou : The problem is that tearDown() tries to rmdir() the current directory, which is forbidden under Solaris and returns EINVAL: >>> os.getcwd() '/home/antoine/t/t' >>> os.rmdir("/home/antoine/t/t") Traceback (most recent call last): File "", line 1, in OSErro