And another one, for the ByteArrayWithinArray test, the compiled array there was missing a # for the first ByteArray. 'array ^ #( [1] #[2] )' -> 'array ^ #( #[1] #[2] )'. Cheers, Henry Stéphane Ducasse wrote:
I released an archive with two images 10259 with tests run 10259-withClosure + john + lukas + my fixes so far
so that we can go faster to fix the problems
https://gforge.inria.fr/frs/?group_id=1299 and files
Stef
_______________________________________________ Pharo-project mailing list Pharo-project@lists.gforge.inria.fr http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
'From Pharo0.1 of 16 May 2008 [Latest update: #10259] on 23 March 2009 at 1:57:53 pm'! !ArrayLiteralTest methodsFor: 'tests' stamp: 'Henrik Sperre Johansen 3/23/2009 13:55'! testByteArrayWithinArray self class compile: 'array ^ #( #[1] #[2] )'. self assert: (self array isKindOf: Array). self assert: (self array size = 2). self assert: (self array first isKindOf: ByteArray). self assert: (self array first first = 1). self assert: (self array last isKindOf: ByteArray). self assert: (self array last first = 2) ! !