[issue5120] Disabling test_ttk_guionly on mac

2011-06-30 Thread STINNER Victor

STINNER Victor victor.stin...@haypocalc.com added the comment:

Still crashing on PPC Tiger 3.x buildbot:

...
[333/356/2] test_ttk_guionly
Fatal Python error: Segmentation fault

Current thread 0xa000ed88:
  File /Users/buildbot/buildarea/3.x.parc-tiger-1/build/Lib/tkinter/ttk.py, 
line 47 in _load_tile
  File /Users/buildbot/buildarea/3.x.parc-tiger-1/build/Lib/tkinter/ttk.py, 
line 559 in __init__
  File /Users/buildbot/buildarea/3.x.parc-tiger-1/build/Lib/tkinter/ttk.py, 
line 614 in __init__
  File 
/Users/buildbot/buildarea/3.x.parc-tiger-1/build/Lib/test/test_ttk_guionly.py,
 line 14 in module
  File 
/Users/buildbot/buildarea/3.x.parc-tiger-1/build/Lib/importlib/_bootstrap.py, 
line 342 in _load_module
  File 
/Users/buildbot/buildarea/3.x.parc-tiger-1/build/Lib/importlib/_bootstrap.py, 
line 141 in decorated
  File 
/Users/buildbot/buildarea/3.x.parc-tiger-1/build/Lib/importlib/_bootstrap.py, 
line 437 in load_module
  File ./Lib/test/regrtest.py, line 1063 in runtest_inner
  File ./Lib/test/regrtest.py, line 861 in runtest
  File ./Lib/test/regrtest.py, line 669 in main
  File ./Lib/test/regrtest.py, line 1648 in module
make: *** [buildbottest] Segmentation fault


http://www.python.org/dev/buildbot/all/builders/PPC%20Tiger%203.x/builds/2109/steps/test/logs/stdio

Can anyone with a Mac look at this issue?

--

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



[issue5120] Disabling test_ttk_guionly on mac

2011-04-04 Thread STINNER Victor

STINNER Victor victor.stin...@haypocalc.com added the comment:

Recent crash on PPC Tiger 3.x:

[188/354] test_ttk_guionly
Fatal Python error: Segmentation fault

Traceback (most recent call first):
  File /Users/buildbot/buildarea/3.x.parc-tiger-1/build/Lib/tkinter/ttk.py, 
line 47 in _load_tile
  File /Users/buildbot/buildarea/3.x.parc-tiger-1/build/Lib/tkinter/ttk.py, 
line 559 in __init__
  File /Users/buildbot/buildarea/3.x.parc-tiger-1/build/Lib/tkinter/ttk.py, 
line 614 in __init__
  File 
/Users/buildbot/buildarea/3.x.parc-tiger-1/build/Lib/test/test_ttk_guionly.py,
 line 14 in module
  File 
/Users/buildbot/buildarea/3.x.parc-tiger-1/build/Lib/importlib/_bootstrap.py, 
line 342 in _load_module
  File 
/Users/buildbot/buildarea/3.x.parc-tiger-1/build/Lib/importlib/_bootstrap.py, 
line 141 in decorated
  File 
/Users/buildbot/buildarea/3.x.parc-tiger-1/build/Lib/importlib/_bootstrap.py, 
line 437 in load_module
  File ./Lib/test/regrtest.py, line 1025 in runtest_inner
  File ./Lib/test/regrtest.py, line 826 in runtest
  File ./Lib/test/regrtest.py, line 650 in main
  File ./Lib/test/regrtest.py, line 1607 in module
make: *** [buildbottest] Segmentation fault
program finished with exit code 2
elapsedTime=1656.072954

http://www.python.org/dev/buildbot/all/builders/PPC%20Tiger%203.x/builds/1701/steps/test/logs/stdio

--
nosy: +haypo

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



[issue5120] Disabling test_ttk_guionly on mac

2011-04-04 Thread STINNER Victor

STINNER Victor victor.stin...@haypocalc.com added the comment:

ttk_guionly creates a button (ttk.Button()) which calls _load_tile(), which 
crashs on: master.tk.eval('package require tile')

Code of the function:
-
def _load_tile(master):
if _REQUIRE_TILE:
import os
tilelib = os.environ.get('TILE_LIBRARY')
if tilelib:
# append custom tile path to the the list of directories that
# Tcl uses when attempting to resolve packages with the package
# command
master.tk.eval(
'global auto_path; '
'lappend auto_path {%s}' % tilelib)

master.tk.eval('package require tile') # TclError may be raised here
master._tile_loaded = True
-

--

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



[issue5120] Disabling test_ttk_guionly on mac

2010-10-21 Thread R. David Murray

R. David Murray rdmur...@bitdance.com added the comment:

Presumably this is the same issue 8716.  That issue contains additional details 
and a patch from Ronald, so I'm not closing it as a duplicate.  

I don't know if the patch on this issue would actually address the issue.  I 
tried to apply it to py3k but it did not apply cleanly.

--

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



[issue5120] Disabling test_ttk_guionly on mac

2010-07-23 Thread Ronald Oussoren

Ronald Oussoren ronaldousso...@mac.com added the comment:

This is still an issue for the PPC Tiger buildbot:

test_ttk_guionly
make: *** [buildbottest] Segmentation fault

(Direct link: 
http://www.python.org/dev/buildbot/builders/PPC%20Tiger%202.7/builds/39/steps/test/logs/stdio)

--

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



[issue5120] Disabling test_ttk_guionly on mac

2010-07-22 Thread Ronald Oussoren

Ronald Oussoren ronaldousso...@mac.com added the comment:

Mark: maybe, why don't you test this?

--
assignee:  - ronaldoussoren

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



[issue5120] Disabling test_ttk_guionly on mac

2010-07-21 Thread Mark Lawrence

Mark Lawrence breamore...@yahoo.co.uk added the comment:

Is this still a problem on OS X?

--
nosy: +BreamoreBoy

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



[issue5120] Disabling test_ttk_guionly on mac

2009-09-21 Thread Ned Deily

Ned Deily n...@acm.org added the comment:

I noticed this while investigating Issue6834. Is this still an open issue 
for OS X?  Could it explain the symptoms in 6834?

--
nosy: +ned.deily, ronaldoussoren

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



[issue5120] Disabling test_ttk_guionly on mac

2009-09-21 Thread Ned Deily

Ned Deily n...@acm.org added the comment:

Sorry, that should be Issue6864.

--

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



[issue5120] Disabling test_ttk_guionly on mac

2009-08-10 Thread R. David Murray

R. David Murray rdmur...@bitdance.com added the comment:

To follow up your question posted on issue 6527 (sorry for the
duplicate), I don't currently have a mac to test on.  I might have
access to one in a couple weeks, though.

--
nosy: +r.david.murray
priority:  - normal
stage:  - patch review

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



[issue5120] Disabling test_ttk_guionly on mac

2009-02-09 Thread Guilherme Polo

Guilherme Polo ggp...@gmail.com added the comment:

The abort still happens occasionally, see:
http://www.python.org/dev/buildbot/all/OS%20X%20x86%20trunk/builds/118/step-test/0
(last lines)

I've talked with Daniel Steffen, who is one of the maintainers of Tcl/Tk
on Mac OSX, and I was told that all this conditional code in _tkinter.c
and tkappinit.c for TK_AQUA is outdated starting with tk 8.4.8, but tk
8.4.7 that ships with macosx (which happens to be the version being used
by the buildslave mentioned above) also includes the patch that
deprecates the usage, and we should be calling only Tk_Init on
tkappinit.c which will deal with all the details (the details are in
tkMacOSXInit:TkpInit).

There is an entry in tk's changelog that is directly related to this:
http://tktoolkit.cvs.sourceforge.net/viewvc/tktoolkit/tk/ChangeLog.2004?revision=1.1view=markup
(lines 210-220)

Any chance I can change _tkinter and tkappinit to check for
TKINTER_OLD_AQUA (new macro to be added) instead of TK_AQUA and verify
if it helps the buildslaves ?

--
status: closed - open

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



[issue5120] Disabling test_ttk_guionly on mac

2009-02-09 Thread Guilherme Polo

Changes by Guilherme Polo ggp...@gmail.com:


--
keywords: +patch
Added file: http://bugs.python.org/file13000/oldtkaqua.diff

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



[issue5120] Disabling test_ttk_guionly on mac

2009-02-01 Thread Guilherme Polo

Guilherme Polo ggp...@gmail.com added the comment:

It seems to be good now after a recent modification in how tests are
performed, closing. Sorry for the fuss.

--
status: open - closed

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



[issue5120] Disabling test_ttk_guionly on mac

2009-01-31 Thread Guilherme Polo

New submission from Guilherme Polo ggp...@gmail.com:

For some reason the recently added test_ttk_guionly is causing Tcl to
abort on Mac. I would prefer to disable the test for now, except if some
mac owner has the time to fix it.

I would like to know the tcl version being used on the noller-osx86
buildslave too, if possible.

--
components: Tkinter
messages: 80884
nosy: gpolo
severity: normal
status: open
title: Disabling test_ttk_guionly on mac
type: crash
versions: Python 2.7, Python 3.1

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



[issue5120] Disabling test_ttk_guionly on mac

2009-01-31 Thread Guilherme Polo

Guilherme Polo ggp...@gmail.com added the comment:

 For some reason the recently added test_ttk_guionly is causing Tcl to
 abort on Mac. I would prefer to disable the test for now, except if some
 mac owner has the time to fix it.

Just saw it didn't cause an abort with the buildslave heller-x86-osx5, btw.

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