[Pharo-project] Baseline test results on pharo core 10392
Solutions I see: ...
For the second time: Why not use the #isAbstract trick I proposed on [1]? This makes the unit test an abstract one on non-mac platforms and is the simplest thing that could possibly work ... Bye Torsten [1] http://lists.gforge.inria.fr/pipermail/pharo-project/2009-June/009640.html -- GRATIS für alle GMX-Mitglieder: Die maxdome Movie-FLAT! Jetzt freischalten unter http://portal.gmx.net/de/go/maxdome01
On Mon, Jul 27, 2009 at 1:29 PM, Torsten Bergmann<astares@gmx.de> wrote:
Solutions I see: ...
For the second time: Why not use the #isAbstract trick I proposed on [1]? This makes the unit test an abstract one on non-mac platforms and is the simplest thing that could possibly work ...
+10 Oh, nice explanation, I vote for doing it abstract and dependent on isMacintosh until there is a windows and linux proxy.
Bye Torsten
[1] http://lists.gforge.inria.fr/pipermail/pharo-project/2009-June/009640.html -- GRATIS für alle GMX-Mitglieder: Die maxdome Movie-FLAT! Jetzt freischalten unter http://portal.gmx.net/de/go/maxdome01
_______________________________________________ Pharo-project mailing list Pharo-project@lists.gforge.inria.fr http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
On Mon, Jul 27, 2009 at 5:29 PM, Torsten Bergmann <astares@gmx.de> wrote:
Solutions I see: ...
For the second time: Why not use the #isAbstract trick I proposed on [1]? This makes the unit test an abstract one on non-mac platforms and is the simplest thing that could possibly work ...
I don't know if this is the approach I like most. I mean, is correct a class to be abstract depending on the platform? If this is true, ok, I like your solution heheh. If that is not correct, What about doing this: HostSystemMenusTest class>>expectedFailures SmalltalkImage current platformName = 'Mac OS' ifFalse:[ ^#(#testXXX #testYYY)]. ]. ^#() Best, Mariano
Bye Torsten
[1] http://lists.gforge.inria.fr/pipermail/pharo-project/2009-June/009640.html -- GRATIS für alle GMX-Mitglieder: Die maxdome Movie-FLAT! Jetzt freischalten unter http://portal.gmx.net/de/go/maxdome01
_______________________________________________ Pharo-project mailing list Pharo-project@lists.gforge.inria.fr http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
2009/7/27 Mariano Martinez Peck <marianopeck@gmail.com>:
HostSystemMenusTest class>>expectedFailures
SmalltalkImage current platformName = 'Mac OS' ifFalse:[ Â Â Â Â ^#(#testXXX #testYYY)]. ]. ^#()
Expected failures are indications of bugs that are not yet corrected. Does not seem to apply here. -- Damien Cassou http://damiencassou.seasidehosting.st "Lambdas are relegated to relative obscurity until Java makes them popular by not having them." James Iry
On Tue, Jul 28, 2009 at 5:42 AM, Damien Cassou <damien.cassou@gmail.com>wrote:
2009/7/27 Mariano Martinez Peck <marianopeck@gmail.com>:
HostSystemMenusTest class>>expectedFailures
SmalltalkImage current platformName = 'Mac OS' ifFalse:[ ^#(#testXXX #testYYY)]. ]. ^#()
Expected failures are indications of bugs that are not yet corrected. Does not seem to apply here.
ahhh okok. So...shall we go for torsten solution ?
-- Damien Cassou http://damiencassou.seasidehosting.st
"Lambdas are relegated to relative obscurity until Java makes them popular by not having them." James Iry
_______________________________________________ Pharo-project mailing list Pharo-project@lists.gforge.inria.fr http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
On Jul 28, 2009, at 14:51 , Mariano Martinez Peck wrote:
On Tue, Jul 28, 2009 at 5:42 AM, Damien Cassou <damien.cassou@gmail.com
wrote:
2009/7/27 Mariano Martinez Peck <marianopeck@gmail.com>:
HostSystemMenusTest class>>expectedFailures
SmalltalkImage current platformName = 'Mac OS' ifFalse:[ ^#(#testXXX #testYYY)]. ]. ^#()
Expected failures are indications of bugs that are not yet corrected. Does not seem to apply here.
ahhh okok. So...shall we go for torsten solution ?
Yes. Adrian
-- Damien Cassou http://damiencassou.seasidehosting.st
"Lambdas are relegated to relative obscurity until Java makes them popular by not having them." James Iry
_______________________________________________ Pharo-project mailing list Pharo-project@lists.gforge.inria.fr http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
_______________________________________________ Pharo-project mailing list Pharo-project@lists.gforge.inria.fr http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
On Tue, Jul 28, 2009 at 11:58 AM, Adrian Lienhard <adi@netstyle.ch> wrote:
On Jul 28, 2009, at 14:51 , Mariano Martinez Peck wrote:
On Tue, Jul 28, 2009 at 5:42 AM, Damien Cassou <damien.cassou@gmail.com
wrote:
2009/7/27 Mariano Martinez Peck <marianopeck@gmail.com>:
HostSystemMenusTest class>>expectedFailures
SmalltalkImage current platformName = 'Mac OS' ifFalse:[ ^#(#testXXX #testYYY)]. ]. ^#()
Expected failures are indications of bugs that are not yet corrected. Does not seem to apply here.
ahhh okok. So...shall we go for torsten solution ?
Yes.
http://code.google.com/p/pharo/issues/detail?id=996 I also attached a possible changeset. best, Mariano
Adrian
-- Damien Cassou http://damiencassou.seasidehosting.st
"Lambdas are relegated to relative obscurity until Java makes them popular by not having them." James Iry
_______________________________________________ Pharo-project mailing list Pharo-project@lists.gforge.inria.fr http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
_______________________________________________ Pharo-project mailing list Pharo-project@lists.gforge.inria.fr http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
_______________________________________________ Pharo-project mailing list Pharo-project@lists.gforge.inria.fr http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
It works ok on my Debian Linux 5.0 (Lenny) i386. Debian Linux 5.0 (Lenny) amd64. Miguel Cobá 2009/7/28 Mariano Martinez Peck <marianopeck@gmail.com>:
On Tue, Jul 28, 2009 at 11:58 AM, Adrian Lienhard <adi@netstyle.ch> wrote:
On Jul 28, 2009, at 14:51 , Mariano Martinez Peck wrote:
On Tue, Jul 28, 2009 at 5:42 AM, Damien Cassou <damien.cassou@gmail.com
wrote:
2009/7/27 Mariano Martinez Peck <marianopeck@gmail.com>:
HostSystemMenusTest class>>expectedFailures
SmalltalkImage current platformName = 'Mac OS' ifFalse:[ Â Â ^#(#testXXX #testYYY)]. ]. ^#()
Expected failures are indications of bugs that are not yet corrected. Does not seem to apply here.
ahhh okok. So...shall we go for torsten solution ?
Yes.
http://code.google.com/p/pharo/issues/detail?id=996
I also attached a possible changeset.
best,
Mariano
Adrian
-- Damien Cassou http://damiencassou.seasidehosting.st
"Lambdas are relegated to relative obscurity until Java makes them popular by not having them." James Iry
_______________________________________________ Pharo-project mailing list Pharo-project@lists.gforge.inria.fr http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
_______________________________________________ Pharo-project mailing list Pharo-project@lists.gforge.inria.fr http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
_______________________________________________ Pharo-project mailing list Pharo-project@lists.gforge.inria.fr http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
_______________________________________________ Pharo-project mailing list Pharo-project@lists.gforge.inria.fr http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
should the ticket be marked as verified? On Tue, Jul 28, 2009 at 10:10 AM, Miguel Cobá<miguel.coba@gmail.com> wrote:
It works ok on my
Debian Linux 5.0 (Lenny) i386. Debian Linux 5.0 (Lenny) amd64.
Miguel Cobá
2009/7/28 Mariano Martinez Peck <marianopeck@gmail.com>:
On Tue, Jul 28, 2009 at 11:58 AM, Adrian Lienhard <adi@netstyle.ch> wrote:
On Jul 28, 2009, at 14:51 , Mariano Martinez Peck wrote:
On Tue, Jul 28, 2009 at 5:42 AM, Damien Cassou <damien.cassou@gmail.com
wrote:
2009/7/27 Mariano Martinez Peck <marianopeck@gmail.com>:
HostSystemMenusTest class>>expectedFailures
SmalltalkImage current platformName = 'Mac OS' ifFalse:[ Â Â ^#(#testXXX #testYYY)]. ]. ^#()
Expected failures are indications of bugs that are not yet corrected. Does not seem to apply here.
ahhh okok. So...shall we go for torsten solution ?
Yes.
http://code.google.com/p/pharo/issues/detail?id=996
I also attached a possible changeset.
best,
Mariano
Adrian
-- Damien Cassou http://damiencassou.seasidehosting.st
"Lambdas are relegated to relative obscurity until Java makes them popular by not having them." James Iry
_______________________________________________ Pharo-project mailing list Pharo-project@lists.gforge.inria.fr http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
_______________________________________________ Pharo-project mailing list Pharo-project@lists.gforge.inria.fr http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
_______________________________________________ Pharo-project mailing list Pharo-project@lists.gforge.inria.fr http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
_______________________________________________ Pharo-project mailing list Pharo-project@lists.gforge.inria.fr http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
Yes, if you tested it and think it is good, please change the status to verified. Cheers, Adrian On Jul 28, 2009, at 17:12 , Miguel Cobá wrote:
should the ticket be marked as verified?
On Tue, Jul 28, 2009 at 10:10 AM, Miguel Cobá<miguel.coba@gmail.com> wrote:
It works ok on my
Debian Linux 5.0 (Lenny) i386. Debian Linux 5.0 (Lenny) amd64.
Miguel Cobá
2009/7/28 Mariano Martinez Peck <marianopeck@gmail.com>:
On Tue, Jul 28, 2009 at 11:58 AM, Adrian Lienhard <adi@netstyle.ch> wrote:
On Jul 28, 2009, at 14:51 , Mariano Martinez Peck wrote:
On Tue, Jul 28, 2009 at 5:42 AM, Damien Cassou <damien.cassou@gmail.com
wrote:
2009/7/27 Mariano Martinez Peck <marianopeck@gmail.com>:
HostSystemMenusTest class>>expectedFailures
SmalltalkImage current platformName = 'Mac OS' ifFalse:[ ^#(#testXXX #testYYY)]. ]. ^#()
Expected failures are indications of bugs that are not yet corrected. Does not seem to apply here.
ahhh okok. So...shall we go for torsten solution ?
Yes.
http://code.google.com/p/pharo/issues/detail?id=996
I also attached a possible changeset.
best,
Mariano
Adrian
-- Damien Cassou http://damiencassou.seasidehosting.st
"Lambdas are relegated to relative obscurity until Java makes them popular by not having them." James Iry
_______________________________________________ Pharo-project mailing list Pharo-project@lists.gforge.inria.fr http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
_______________________________________________ Pharo-project mailing list Pharo-project@lists.gforge.inria.fr http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo- project
_______________________________________________ Pharo-project mailing list Pharo-project@lists.gforge.inria.fr http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
_______________________________________________ Pharo-project mailing list Pharo-project@lists.gforge.inria.fr http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
_______________________________________________ Pharo-project mailing list Pharo-project@lists.gforge.inria.fr http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
participants (5)
-
Adrian Lienhard -
Damien Cassou -
Mariano Martinez Peck -
Miguel Cobá -
Torsten Bergmann