[squeak-dev] The Trunk: Kernel-bf.702.mcz

Chris Muller asqueaker at gmail.com
Thu Jul 5 19:24:34 UTC 2012


Those failing tests were never updated because they need to be deleted
instead, along with TimeStamp.

   http://lists.squeakfoundation.org/pipermail/squeak-dev/2010-September/153390.html
   http://www.mail-archive.com/pharo-project@lists.gforge.inria.fr/msg25308.html

We're going on two years now -- if there are no objections I will
finally do the work to remove TimeStamp from the image.  Thankfully,
it looks like it has no meaningful behaviors over DateAndTime..

 - Chris


On Tue, Jul 3, 2012 at 5:10 PM,  <commits at source.squeak.org> wrote:
> Bert Freudenberg uploaded a new version of Kernel to project The Trunk:
> http://source.squeak.org/trunk/Kernel-bf.702.mcz
>
> ==================== Summary ====================
>
> Name: Kernel-bf.702
> Author: bf
> Time: 4 July 2012, 12:10:20.238 am
> UUID: a349f289-2b28-4e98-abfc-5b4d199aa8f1
> Ancestors: Kernel-bf.701
>
> Make 7 more Date/Time tests pass. To make the remaining 3 tests pass we need to decide if unspecified timezones should be taken as local time (as per ISO 8601) or as UTC (as per changes by cmm). Currently there is a mix if the two.
>
> =============== Diff against Kernel-bf.701 ===============
>
> Item was changed:
>   ----- Method: DateAndTime class>>date:time: (in category 'squeak protocol') -----
>   date: aDate time: aTime
>
>         ^ self
>                 year: aDate year
>                 day: aDate dayOfYear
>                 hour: aTime hour
>                 minute: aTime minute
> +               second: aTime second
> +               offset: aDate start offset!
> -               second: aTime second!
>
>


More information about the Squeak-dev mailing list