[issue12333] test_packaging failures under Solaris

2011-08-25 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: This is strange; TempdirManager.tearDown already changes back to self._olddir (set to os.getcwd() in setUp). -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue12333

[issue12333] test_packaging failures under Solaris

2011-08-25 Thread Roundup Robot
Roundup Robot devn...@psf.upfronthosting.co.za 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

[issue12333] test_packaging failures under Solaris

2011-08-25 Thread Antoine Pitrou
Changes by Antoine Pitrou pit...@free.fr: -- resolution: - fixed stage: needs patch - committed/rejected status: open - closed versions: +Python 3.2 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue12333

[issue12333] test_packaging failures under Solaris

2011-08-24 Thread Charles-François Natali
Charles-François Natali neolo...@free.fr 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

[issue12333] test_packaging failures under Solaris

2011-06-17 Thread Roundup Robot
Roundup Robot devnull@devnull 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

[issue12333] test_packaging failures under Solaris

2011-06-17 Thread STINNER Victor
STINNER Victor victor.stin...@haypocalc.com added the comment: 276530424350 fixed the failures on x86 OpenIndiana 3.x buildbot. -- nosy: +haypo resolution: - fixed status: open - closed ___ Python tracker rep...@bugs.python.org

[issue12333] test_packaging failures under Solaris

2011-06-17 Thread Roundup Robot
Roundup Robot devnull@devnull 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

[issue12333] test_packaging failures under Solaris

2011-06-17 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: Thanks for tackling this while I was offline. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue12333 ___

[issue12333] test_packaging failures under Solaris

2011-06-14 Thread Antoine Pitrou
New submission from Antoine Pitrou pit...@free.fr: 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 stdin, line 1,

[issue12333] test_packaging failures under Solaris

2011-06-14 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: I’m going to change directory before removing the temp dir. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue12333 ___