Mariano Martinez Peck wrote:
I thought we killed all those tests that brings a popup and wait for a user response.
Yanni can you tell us which are those tests ?
There are some tests that I filtered out, and don't run, because they stopped the build. That was a few weeks ago. You can see which ones, by looking at: http://hudson.jooshr.org/job/Pharo1.1/ws/core11-tests/core11-tests.st/*view*... where you'll find: HDTestReport runClasses: ( TestCase withAllSubclasses reject: [:cls | ((cls category asString beginsWith: 'Tests-Traits') or: [cls name = 'ImageSegmentTestExport']) or: [cls name = 'MCPackageTest'] ] ) named: 'AllTestCases' At some point, I'll run these disabled tests to see how they're behaving now. The latest problem, from a few days ago, was that Object>>displayExtent was deprecated (maybe it wasn't called displayExtent, but something like that). I eventually added: Preferences disable: #raiseDeprecatedWarnings. so the build would continue in a headless image. Prior to that, the Author name was no longer automatically set for SUnit. That was solved with: Author fullName: 'builder'. And before that, some updates caused a dialog to pop up (maybe it was the deprecation dialog, I can't remember). That was solved with: [Utilities updateFromServer] valueSuppressingAllMessages It seems that something always happens. Just have to fix them as they come along, or hope that everyone runs a headless build and sees the problem and fixes it right away. -- Yanni