[Pharo-project] New pharo-dev based on latest version
I've just published a new pharo-dev version on: http://code.google.com/p/pharo/wiki/Downloads?tm=2. It is based on version 10061. -- Damien Cassou Peter von der Ahé: «I'm beginning to see why Gilad wished us good luck». (http://blogs.sun.com/ahe/entry/override_snafu)
test report: http://www.adhocmusic.net/squeak/pharo0.1-10061dev08.08.2.tests.html passed: 3419 failures: 42 errors: 41 As for pharo-web & squeak images I had to delete: MCPackageTest>>#testUnload {tests} RxPaserTest>>#testMatchesInwW and also (this is new, regression ?): MCFileInTest>>testStWriter On Wed, Aug 20, 2008 at 3:26 PM, Damien Cassou <damien.cassou@gmail.com>wrote:
I've just published a new pharo-dev version on: http://code.google.com/p/pharo/wiki/Downloads?tm=2. It is based on version 10061.
-- Damien Cassou Peter von der Ahé: «I'm beginning to see why Gilad wished us good luck». (http://blogs.sun.com/ahe/entry/override_snafu)
_______________________________________________ Pharo-project mailing list Pharo-project@lists.gforge.inria.fr http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
-- Laurent Laffont <l.laffont@temis-france.com> TEMIS 48, Avenue Jean Jaurès 74800 La Roche sur Foron Tél. : 04 50 97 49 91 Fax : 04 50 97 49 94 http://www.temis-france.com
I loved these reports! Keep pushing. I will fix the regex package as soon as I have a moment. stef On Aug 20, 2008, at 5:03 PM, laurent laffont wrote:
test report: http://www.adhocmusic.net/squeak/pharo0.1-10061dev08.08.2.tests.html passed: 3419 failures: 42 errors: 41
As for pharo-web & squeak images I had to delete: MCPackageTest>>#testUnload {tests} RxPaserTest>>#testMatchesInwW
and also (this is new, regression ?): MCFileInTest>>testStWriter
On Wed, Aug 20, 2008 at 3:26 PM, Damien Cassou <damien.cassou@gmail.com
wrote: I've just published a new pharo-dev version on: http://code.google.com/p/pharo/wiki/Downloads?tm=2. It is based on version 10061.
-- Damien Cassou Peter von der Ahé: «I'm beginning to see why Gilad wished us good luck». (http://blogs.sun.com/ahe/entry/override_snafu)
_______________________________________________ Pharo-project mailing list Pharo-project@lists.gforge.inria.fr http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
-- Laurent Laffont <l.laffont@temis-france.com>
TEMIS 48, Avenue Jean Jaurès 74800 La Roche sur Foron Tél. : 04 50 97 49 91 Fax : 04 50 97 49 94 http://www.temis-france.com _______________________________________________ Pharo-project mailing list Pharo-project@lists.gforge.inria.fr http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
On Wed, Aug 20, 2008 at 6:34 PM, Stéphane Ducasse <stephane.ducasse@inria.fr> wrote:
I loved these reports!
And why don't you like them anymore? -- Damien Cassou Peter von der Ahé: «I'm beginning to see why Gilad wished us good luck». (http://blogs.sun.com/ahe/entry/override_snafu)
Thank you. I have another super newbie question. I want to disable the warning that SqueakV39.sources is not found when we load an image. I found the preference and the message Preferences>>warnIfNoSourcesFile but this is not called on startup (I've put a halt in it to check) I try to find a tool to search for the string "Squeak cannot find the sources file named ..." to know which code popup the dialog. I want to disable this dialog and the "Enter your initials" one by code in my squeakci script, as it prevent me from drinking my coffee or taking a nap while all tests runs without any human intervention. Laurent
On Wed, Aug 20, 2008 at 10:09:32PM +0200, laurent laffont wrote:
Thank you.
I have another super newbie question. I want to disable the warning that SqueakV39.sources is not found when we load an image. I found the preference and the message Preferences>>warnIfNoSourcesFile but this is not called on startup (I've put a halt in it to check)
I try to find a tool to search for the string "Squeak cannot find the sources file named ..." to know which code popup the dialog.
Disable the preference general > warnIfNoSourcesFile
I want to disable this dialog and the "Enter your initials" one by code in my squeakci script, as it prevent me from drinking my coffee or taking a nap while all tests runs without any human intervention.
I think this is the code: Utilities authorInitials: 'test' -- Matthew Fulmer -- http://mtfulmer.wordpress.com/
I love them. Stef On Aug 20, 2008, at 7:38 PM, Damien Cassou wrote:
On Wed, Aug 20, 2008 at 6:34 PM, Stéphane Ducasse <stephane.ducasse@inria.fr> wrote:
I loved these reports!
And why don't you like them anymore?
-- Damien Cassou Peter von der Ahé: «I'm beginning to see why Gilad wished us good luck». (http://blogs.sun.com/ahe/entry/override_snafu) _______________________________________________ Pharo-project mailing list Pharo-project@lists.gforge.inria.fr http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
You bring the menu on the method pane then more.... then source code with .... it will scan all the methods for the string you pass On Aug 20, 2008, at 10:09 PM, laurent laffont wrote:
Thank you.
I have another super newbie question. I want to disable the warning that SqueakV39.sources is not found when we load an image. I found the preference and the message Preferences>>warnIfNoSourcesFile but this is not called on startup (I've put a halt in it to check)
I try to find a tool to search for the string "Squeak cannot find the sources file named ..." to know which code popup the dialog.
I want to disable this dialog and the "Enter your initials" one by code in my squeakci script, as it prevent me from drinking my coffee or taking a nap while all tests runs without any human intervention.
Laurent _______________________________________________ Pharo-project mailing list Pharo-project@lists.gforge.inria.fr http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
On Wed, Aug 20, 2008 at 11:41 PM, Matthew Fulmer <tapplek@gmail.com> wrote:
On Wed, Aug 20, 2008 at 10:09:32PM +0200, laurent laffont wrote:
Thank you.
I have another super newbie question. I want to disable the warning that SqueakV39.sources is not found when we load an image. I found the preference and the message Preferences>>warnIfNoSourcesFile but this is not called on startup (I've put a halt in it to check)
I try to find a tool to search for the string "Squeak cannot find the sources file named ..." to know which code popup the dialog.
Disable the preference general > warnIfNoSourcesFile
I don't want to do this manually: I want my tools to download damien's zip archive extract it and run all the tests. I don't want to prepare manually the image for testing.
I want to disable this dialog and the "Enter your initials" one by code in my squeakci script, as it prevent me from drinking my coffee or taking a nap while all tests runs without any human intervention.
I think this is the code:
Utilities authorInitials: 'test'
OK, thank you.
-- Matthew Fulmer -- http://mtfulmer.wordpress.com/
-- Laurent Laffont
You should have a look at keith package there is Installer and another one that allows one to feed the popup Ideally we should remove the pop up Now you can specify a script in which you will disable the preferences Preferences disable: something like that On Aug 21, 2008, at 7:53 AM, laurent laffont wrote:
On Wed, Aug 20, 2008 at 11:41 PM, Matthew Fulmer <tapplek@gmail.com> wrote: On Wed, Aug 20, 2008 at 10:09:32PM +0200, laurent laffont wrote:
Thank you.
I have another super newbie question. I want to disable the warning that SqueakV39.sources is not found when we load an image. I found the preference and the message Preferences>>warnIfNoSourcesFile but this is not called on startup (I've put a halt in it to check)
I try to find a tool to search for the string "Squeak cannot find the sources file named ..." to know which code popup the dialog.
Disable the preference general > warnIfNoSourcesFile
I don't want to do this manually: I want my tools to download damien's zip archive extract it and run all the tests. I don't want to prepare manually the image for testing.
I want to disable this dialog and the "Enter your initials" one by code in my squeakci script, as it prevent me from drinking my coffee or taking a nap while all tests runs without any human intervention.
I think this is the code:
Utilities authorInitials: 'test'
OK, thank you.
-- Matthew Fulmer -- http://mtfulmer.wordpress.com/
-- Laurent Laffont _______________________________________________ Pharo-project mailing list Pharo-project@lists.gforge.inria.fr http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
On 21.08.2008, at 07:53, laurent laffont wrote:
Disable the preference general > warnIfNoSourcesFile
I don't want to do this manually: I want my tools to download damien's zip archive extract it and run all the tests. I don't want to prepare manually the image for testing.
Preferences disable: #warnIfNoSourcesFile -- Marcus Denker -- denker@iam.unibe.ch http://www.iam.unibe.ch/~denker
On Thu, Aug 21, 2008 at 9:55 AM, Marcus Denker <denker@iam.unibe.ch> wrote:
On 21.08.2008, at 07:53, laurent laffont wrote:
Disable the preference general > warnIfNoSourcesFile
I don't want to do this manually: I want my tools to download damien's zip archive extract it and run all the tests. I don't want to prepare manually the image for testing.
Preferences disable: #warnIfNoSourcesFile
I do that, and try other things, it doesn't work. It seems that the warning is thrown *before* the loading of the .st script given in squeakvm arguments. I want to check for this, but I have difficulties to find code related to image initialization / startup ... I'm so newbie :( -- Laurent Laffont
I do not have the time to look deeper now. Ask in squeak-dev. You can also have a look at startUp* methods stef On Aug 21, 2008, at 10:12 AM, laurent laffont wrote:
On Thu, Aug 21, 2008 at 9:55 AM, Marcus Denker <denker@iam.unibe.ch> wrote:
On 21.08.2008, at 07:53, laurent laffont wrote:
Disable the preference general > warnIfNoSourcesFile
I don't want to do this manually: I want my tools to download damien's zip archive extract it and run all the tests. I don't want to prepare manually the image for testing.
Preferences disable: #warnIfNoSourcesFile
I do that, and try other things, it doesn't work. It seems that the warning is thrown *before* the loading of the .st script given in squeakvm arguments.
I want to check for this, but I have difficulties to find code related to image initialization / startup ... I'm so newbie :(
-- Laurent Laffont _______________________________________________ Pharo-project mailing list Pharo-project@lists.gforge.inria.fr http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
participants (5)
-
Damien Cassou -
laurent laffont -
Marcus Denker -
Matthew Fulmer -
Stéphane Ducasse