Tests Guard: http://code.google.com/p/pharo/wiki/TestsGuard
New platform independent failure
- Zinc.Tests.ZnStaticFileServerDelegateTests?.testIfModifiedSinceNotModified
- http://code.google.com/p/pharo/issues/detail?id=6334
Solved failures
- FuelTests.FLMigrationTest.testVariableInsertion
-
Good idea if possible.
Igor like me is on vacation until 19 of july.
On Jul 10, 2012, at 7:07 AM, Tudor Girba wrote:
> Hi Igor,
>
> I just wanted to ask: is the little fix of having Athens work with StrikeFont
> still on the roadmap :)?
>
> As I mentioned before, this would make the adoption e
Hi Friedrich,
I installed a monticello repository on a Linux server with Apache. I hadn't to
modify the "magic" file.
I modified the file named "default", defined a virtual host and activated
WebDAV.
ServerAdmin webmaster@localhost
AddType application/x-monticello mcz
BUILD FAILUREBuild URLhttps://ci.lille.inria.fr/pharo/job/pharo-2.0-tests/./Architecture=32,OS=win/210/Project:Architecture=32,OS=winDate of build:Tue, 10 Jul 2012 23:42:45 +0200Build duration:10 secCHANGESNo ChangesBUILD ARTIFACTSPharo-2.0-AfterRunningTests.zipCONSOLE OUTPUT[...truncated 5 lines..
On 10 Jul 2012, at 22:10, Sven Van Caekenberghe wrote:
> Part of the higher level clients depend on ReferenceStream so those tests
> fail on Pharo 2.0 - I don't really use that part, but I might try to fix that
> later.
Name: ConfigurationOfMemcached-SvenVanCaekenberghe.2
Author: SvenVanCaeken
I made a simple ConfigurationOfMemcached for the excellent Smalltalk memcached
client.
It is available from
http://www.squeaksource.com/memcached
and
http://www.squeaksource.com/MetacelloRepository
Part of the higher level clients depend on ReferenceStream so those tests fail
20201
-
Issue 6325: use "Smalltalk image", not "SmalltalkImage current"
http://code.google.com/p/pharo/issues/detail?id=6325
Issue 6329: Fix MigrationTests in Fuel
http://code.google.com/p/pharo/issues/detail?id=6329
Issue 6328: New Spec Version
We discussed it with Camillo and our result are this proposed changes:
- DateAndTime internally uses only UTC times
- offset changes only the timezone
- asSeconds returns seconds in UTC
- fromSeconds takes seconds in UTC and creates a DateAndTime in local time
-- Pavel
On Tue, Jul 10, 2012 at 6:
On 2012-07-10, at 18:23, Pavel Krivanek wrote:
> On Tue, Jul 10, 2012 at 6:20 PM, Camillo Bruni wrote:
>>>
>>> The problem is that the epoch was always in local time so the logic
>>> behind it and tests were a mess.
>>> Now the epoch starts in one defined moment. Sorry for the failing
>>> tests
On Tue, Jul 10, 2012 at 6:20 PM, Camillo Bruni wrote:
>>
>> The problem is that the epoch was always in local time so the logic
>> behind it and tests were a mess.
>> Now the epoch starts in one defined moment. Sorry for the failing
>> tests but chronology tests were ok and the monkey reported no
>
> The problem is that the epoch was always in local time so the logic
> behind it and tests were a mess.
> Now the epoch starts in one defined moment. Sorry for the failing
> tests but chronology tests were ok and the monkey reported no other
> failures so I supposed that the fix was working wel
On Tue, Jul 10, 2012 at 6:08 PM, Camillo Bruni wrote:
> I solve it the following way:
>
> DateAndTime >> #fromSeconds: seconds
> "Answer a DateAndTime since the Squeak epoch: 1 January 1901"
>
> | integerSeconds nanos |
> integerSeconds := seconds truncated.
> integ
Hi Cami,
fix is here: http://code.google.com/p/pharo/issues/detail?id=6332
The main change is that the epoch starts in UTC time.
-- Pavel
On Tue, Jul 10, 2012 at 5:55 PM, Camillo Bruni wrote:
> I saw that some changes were included but
> - they somehow break other tests
> - the standard offse
I solve it the following way:
DateAndTime >> #fromSeconds: seconds
"Answer a DateAndTime since the Squeak epoch: 1 January 1901"
| integerSeconds nanos |
integerSeconds := seconds truncated.
integerSeconds = seconds
ifTrue: [nanos := 0]
I saw that some changes were included but
- they somehow break other tests
- the standard offset in DateAndTime is set to 0 (instead of a Duration of
length 0)
can somebody quickly summarize the changes for me please? :)
best
cami
On Jul 10, 2012, at 5:42 PM, Damien Cassou wrote:
> Hi Pavel,
>
> On Mon, Jul 9, 2012 at 1:32 PM, Pavel Krivanek
> wrote:
>> if you often download latest development Pharo versions from Jenkins,
>> you may have a mess in the downloaded files because for all builds the
>> archives and images ha
Hi Pavel,
On Mon, Jul 9, 2012 at 1:32 PM, Pavel Krivanek wrote:
> if you often download latest development Pharo versions from Jenkins,
> you may have a mess in the downloaded files because for all builds the
> archives and images have the same name. I created a Jenkins job that
> creates an arch
Something like this ?
bindWith: arg1
^ self bindWithArguments: (OrderedCollection with: arg1)
bindWith: arg1 with: arg2
| coll |
coll := OrderedCollection with: arg1 with: arg2.
^ self bindWithArguments: coll
bindWith: arg1 with: arg2 with: arg3
| coll |
coll := Ordere
20200
-
Issue 6323: Make Growl look nicer
http://code.google.com/p/pharo/issues/detail?id=6323
Issue 6326: RPackage testInvariant failing
http://code.google.com/p/pharo/issues/detail?id=6326
Issue 6322: Failing test
FileSystem.Tests.Memory.MemoryF
Thanks Bert, it seems to work but with a squeak image.
DiskStationSDC> squeak.sh -nodisplay -nosound ./squeak4/Squeak4.3.image &
DiskStationSDC> ps | grep squeak
17992 root 1027m S/usr/local/lib/squeak/4.4.7-2357/squeakvm -nodisplay
-nosound ./squeak4/Squeak4.3.image
18007 root 2476
Hi All,
I miss String>>bindWith:
>>bindWith: with:
etc.
in Pharo. Is there a reason for that missing?
Has anyone an implementation for me?
I dont want to reinvent the wheel ;-)
Greetings
Sabine
Well I have run into a strange problem using Linux.
I've prepared a directory on my Server to hold .mcz files.
So far so good.
Now with Pharo 1.3 this files are properly loaded and save.
with 1.4 I got errors about readStream that is nil
or an bitOr: missing in Character.
Someone wrote the .m
The new tests are failing because the time offset in fromSeconds: should be
Duration new, not 0. I will fix it.
-- Pavel
10.7.2012 v 14:39, Pavel Krivanek :
> Tests Guard report: http://code.google.com/p/pharo/wiki/TestsGuard
>
> We have two fixed platform independent tests
> - RPackage.Test
Tests Guard report: http://code.google.com/p/pharo/wiki/TestsGuard
We have two fixed platform independent tests
- RPackage.Tests.RPackageWithDoTest.testInvariant
- FileSystem.Tests.Memory.MemoryFileSystemTest.testEntryAt
This tests are green on Windows now too:
- Zodiac.Tests.ZdcSimpleSocketStrea
Do we have Spec examples for
- menues
- lists with icons
- trees
already? What is the state and overall
plan for the near future.
Thx
T.
14452
-
Issue 6303: [BUG]: Completion DNU in Inspector/Object Explorer for 1.4
http://code.google.com/p/pharo/issues/detail?id=6303
Issue 6305: StartupPreferences "run once" broken
http://code.google.com/p/pharo/issues/detail?id=6305
Issue 6324: Fo
-- Forwarded message --
From: Lukas Renggli
Date: Tue, Jul 10, 2012 at 7:38 AM
Subject: Re: Uploaded to Dropbox
To: Damien Cassou
source.lukas-renggli.ch (and most other related sites) is up again.
--
Damien Cassou
http://damiencassou.seasidehosting.st
"Lambdas are relegated
Tests Guard report: http://code.google.com/p/pharo/wiki/TestsGuard
The number of failing tests is significantly reduced, we have now only
4 platform independent failures.
In the last build we have one new failing test:
http://code.google.com/p/pharo/issues/detail?id=6156
Cheers,
-- Pavel
Hi Igor,
I just wanted to ask: is the little fix of having Athens work with StrikeFont
still on the roadmap :)?
As I mentioned before, this would make the adoption easier, because we can
switch the Athens even with the regular CogVMs.
Cheers,
Doru
--
www.tudorgirba.com
"It's not what we do
20199
-
Issue 6319: New version of Spec
http://code.google.com/p/pharo/issues/detail?id=6319
Issue 6321: replace "isMemberOf: StrikeFontSet" with "isFontSet"
http://code.google.com/p/pharo/issues/detail?id=6321
Issue 6320: unregister TrueType Class
BUILD FAILUREBuild URLhttps://ci.lille.inria.fr/pharo/job/Pharo%20Core%201.3/42/Project:Pharo Core 1.3Date of build:Tue, 10 Jul 2012 00:38:53 +0200Build duration:3 min 37 secCHANGESNo ChangesBUILD ARTIFACTSPharoCore-1.3.changesPharoCore-1.3.imagePharoCore-1.3.zipCONSOLE OUTPUT[...truncated 1416 lin
Hi all,
Has anybody ever tried to get Smalltalk on a NAS box ? NAS are more and more
present around me and I can't help thinking it would be a great smalltalk
deployment option. Out of the box, PHP application can run.
I think one problem is the multitude of architecture and that each VM needs
20198
-
Issue 6318: simplify #doDeferredUpdatingFor:
http://code.google.com/p/pharo/issues/detail?id=6318
Issue 6311: Failing test on Windows: UrlTest>>#testRoundTripFILE
http://code.google.com/p/pharo/issues/detail?id=6311
Issue 6298: remove all r
Am 07.07.2012 um 18:18 schrieb Sean P. DeNigris:
> Tobias Pape wrote
>>
>>> * How do I remove a package I just uploaded by mistake?
>> If you are admin of the package (which you are, if you
>> created the project) you can navigate to the package (view the
>> version, IIRC) and click 'delete'. Du
Guillermo Polito wrote
>
>> * a way to register shortcuts/categories to be attached to a Morph class
>> by default
>
> Nope :)... aBuilder attachShortcutCategory: #Window to: SystemWindow.
>
Okay, I see them. The limitation of that approach is that it doesn't attach
them to the appropriate doma
BUILD FAILUREBuild URLhttps://ci.lille.inria.fr/pharo/job/pharo-2.0-tests/./Architecture=32,OS=win/199/Project:Architecture=32,OS=winDate of build:Mon, 09 Jul 2012 14:27:55 +0200Build duration:7 min 9 secCHANGESNo ChangesJUnit TestsName: Announcements.Tests.Core Failed: 0 test(s), Passed: 29 test(s
BUILD FAILUREBuild URLhttps://ci.lille.inria.fr/pharo/job/pharo-2.0-tests/./Architecture=32,OS=mac/199/Project:Architecture=32,OS=macDate of build:Mon, 09 Jul 2012 14:27:55 +0200Build duration:5 min 53 secCHANGESNo ChangesJUnit TestsName: Announcements.Tests.Core Failed: 0 test(s), Passed: 29 test(
BUILD FAILUREBuild URLhttps://ci.lille.inria.fr/pharo/job/pharo-2.0-tests/./Architecture=32,OS=linux/199/Project:Architecture=32,OS=linuxDate of build:Mon, 09 Jul 2012 14:27:55 +0200Build duration:5 min 12 secCHANGESNo ChangesJUnit TestsName: Announcements.Tests.Core Failed: 0 test(s), Passed: 29 t
I need to adjust the path to the Cairo lib.
Some cleaning seems to be needed as nbLibraryNameOrHandle is redefined
several time. Or do I misunderstand something with the Trait ?
Hilaire
On 07/07/2012 21:53, Igor Stasenko wrote:
> On 7 July 2012 21:44, Hilaire Fernandes wrote:
>> And for the
Hi,
if you often download latest development Pharo versions from Jenkins,
you may have a mess in the downloaded files because for all builds the
archives and images have the same name. I created a Jenkins job that
creates an archive named by the latest update number. So you will get
something like
20197
-
Issue 6312: Failing test on windows: MCDataStreamTest
http://code.google.com/p/pharo/issues/detail?id=6312
Issue 6310: Failing test on Windows:
ZipArchiveTest>>testCreateWithRelativeNames
http://code.google.com/p/pharo/issues/detail?id=6310
--
Marcus
41 matches
Mail list logo