Failing Gofer test in windows [WAS] [BetaTesting] [ANN] Pharo1.0-10507-rc2dev10.01.2

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
14 messages Options
Reply | Threaded
Open this post in threaded view
|

Failing Gofer test in windows [WAS] [BetaTesting] [ANN] Pharo1.0-10507-rc2dev10.01.2

Mariano Martinez Peck

I cannot reproduce the Gofer test failure. Can you debug it and/or
provide a stack trace?


Ok...I put off the dust from my virtual box image with windows and I could reproduce the problem.

GoferApiTest >> testSubDirectoryRepository
   
fails in

self assert: gofer repositories: (Array with: FileDirectory default pathName , FileDirectory slash , '*')

Because in assert: aGofer repositories: anArray   I can see that:

"first description"  is -> 'C:\mariano\squeak\imagenes\Pharo1.0-10508-rc2dev10.01.2/*'

and "second"  is  ->      'C:\mariano\squeak\imagenes\Pharo1.0-10508-rc2dev10.01.2\*'

Notice the last slash. They are different.

Cheers

Mariano

 
Lukas

--
Lukas Renggli
_______________________________________________
Pharo-project mailing list
[hidden email]
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project


_______________________________________________
Pharo-project mailing list
[hidden email]
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
Reply | Threaded
Open this post in threaded view
|

Re: [Pharo-project] Failing Gofer test in windows [WAS] [BetaTesting] [ANN] Pharo1.0-10507-rc2dev10.01.2

Lukas Renggli
Thanks for figuring out. The following change should fix that problem:

Name: Gofer-Tests-lr.114
Author: TestRunner
Time: 25 January 2010, 9:45:44 pm
UUID: 9dafc930-c2ed-4619-a7ce-d77984e17edd
Ancestors: Gofer-Tests-lr.113

- fixed a bug in gofer under windows

2010/1/25 Mariano Martinez Peck <[hidden email]>:

>
>> I cannot reproduce the Gofer test failure. Can you debug it and/or
>> provide a stack trace?
>>
>
> Ok...I put off the dust from my virtual box image with windows and I could
> reproduce the problem.
>
> GoferApiTest >> testSubDirectoryRepository
>
> fails in
>
> self assert: gofer repositories: (Array with: FileDirectory default pathName
> , FileDirectory slash , '*')
>
> Because in assert: aGofer repositories: anArray   I can see that:
>
> "first description"  is ->
> 'C:\mariano\squeak\imagenes\Pharo1.0-10508-rc2dev10.01.2/*'
>
> and "second"  is  ->
> 'C:\mariano\squeak\imagenes\Pharo1.0-10508-rc2dev10.01.2\*'
>
> Notice the last slash. They are different.
>
> Cheers
>
> Mariano
>
>
>>
>> Lukas
>>
>> --
>> Lukas Renggli
>> http://www.lukas-renggli.ch
>>
>> _______________________________________________
>> Pharo-project mailing list
>> [hidden email]
>> http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
>
>
> _______________________________________________
> Pharo-project mailing list
> [hidden email]
> http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
>



--
Lukas Renggli
http://www.lukas-renggli.ch

_______________________________________________
Pharo-project mailing list
[hidden email]
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
Reply | Threaded
Open this post in threaded view
|

Re: [Pharo-project] Failing Gofer test in windows [WAS] [BetaTesting] [ANN] Pharo1.0-10507-rc2dev10.01.2

Mariano Martinez Peck
Lukas, it is still failing because when you ask the description to first, it is ->

 'C:\mariano\squeak\imagenes\Pharo1.0-10508-rc2dev10.01.2//*'

Double slash. And that's due to

MCSubDirectoryRepository >> description
    ^ directory pathName, '/*'


Cheers

Mariano


On Mon, Jan 25, 2010 at 9:46 PM, Lukas Renggli <[hidden email]> wrote:
Thanks for figuring out. The following change should fix that problem:

Name: Gofer-Tests-lr.114
Author: TestRunner
Time: 25 January 2010, 9:45:44 pm
UUID: 9dafc930-c2ed-4619-a7ce-d77984e17edd
Ancestors: Gofer-Tests-lr.113

- fixed a bug in gofer under windows

2010/1/25 Mariano Martinez Peck <[hidden email]>:
>
>> I cannot reproduce the Gofer test failure. Can you debug it and/or
>> provide a stack trace?
>>
>
> Ok...I put off the dust from my virtual box image with windows and I could
> reproduce the problem.
>
> GoferApiTest >> testSubDirectoryRepository
>
> fails in
>
> self assert: gofer repositories: (Array with: FileDirectory default pathName
> , FileDirectory slash , '*')
>
> Because in assert: aGofer repositories: anArray   I can see that:
>
> "first description"  is ->
> 'C:\mariano\squeak\imagenes\Pharo1.0-10508-rc2dev10.01.2/*'
>
> and "second"  is  ->
> 'C:\mariano\squeak\imagenes\Pharo1.0-10508-rc2dev10.01.2\*'
>
> Notice the last slash. They are different.
>
> Cheers
>
> Mariano
>
>
>>
>> Lukas
>>
>> --
>> Lukas Renggli
>> http://www.lukas-renggli.ch
>>
>> _______________________________________________
>> Pharo-project mailing list
>> [hidden email]
>> http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
>
>
> _______________________________________________
> Pharo-project mailing list
> [hidden email]
> http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
>



--
Lukas Renggli
http://www.lukas-renggli.ch

_______________________________________________
Pharo-project mailing list
[hidden email]
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project


_______________________________________________
Pharo-project mailing list
[hidden email]
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
Reply | Threaded
Open this post in threaded view
|

Re: [Pharo-project] Failing Gofer test in windows [WAS] [BetaTesting] [ANN] Pharo1.0-10507-rc2dev10.01.2

Lukas Renggli
Ok, i passes now:

Name: Gofer-Tests-lr.115
Author: lr
Time: 25 January 2010, 10:30:34 pm
UUID: ec6e1ded-492e-470e-b41a-468265edfc9e
Ancestors: Gofer-Tests-lr.114

- killed a test

2010/1/25 Mariano Martinez Peck <[hidden email]>:

> Lukas, it is still failing because when you ask the description to first, it
> is ->
>
>  'C:\mariano\squeak\imagenes\Pharo1.0-10508-rc2dev10.01.2//*'
>
> Double slash. And that's due to
>
> MCSubDirectoryRepository >> description
>     ^ directory pathName, '/*'
>
>
> Cheers
>
> Mariano
>
>
> On Mon, Jan 25, 2010 at 9:46 PM, Lukas Renggli <[hidden email]> wrote:
>>
>> Thanks for figuring out. The following change should fix that problem:
>>
>> Name: Gofer-Tests-lr.114
>> Author: TestRunner
>> Time: 25 January 2010, 9:45:44 pm
>> UUID: 9dafc930-c2ed-4619-a7ce-d77984e17edd
>> Ancestors: Gofer-Tests-lr.113
>>
>> - fixed a bug in gofer under windows
>>
>> 2010/1/25 Mariano Martinez Peck <[hidden email]>:
>> >
>> >> I cannot reproduce the Gofer test failure. Can you debug it and/or
>> >> provide a stack trace?
>> >>
>> >
>> > Ok...I put off the dust from my virtual box image with windows and I
>> > could
>> > reproduce the problem.
>> >
>> > GoferApiTest >> testSubDirectoryRepository
>> >
>> > fails in
>> >
>> > self assert: gofer repositories: (Array with: FileDirectory default
>> > pathName
>> > , FileDirectory slash , '*')
>> >
>> > Because in assert: aGofer repositories: anArray   I can see that:
>> >
>> > "first description"  is ->
>> > 'C:\mariano\squeak\imagenes\Pharo1.0-10508-rc2dev10.01.2/*'
>> >
>> > and "second"  is  ->
>> > 'C:\mariano\squeak\imagenes\Pharo1.0-10508-rc2dev10.01.2\*'
>> >
>> > Notice the last slash. They are different.
>> >
>> > Cheers
>> >
>> > Mariano
>> >
>> >
>> >>
>> >> Lukas
>> >>
>> >> --
>> >> Lukas Renggli
>> >> http://www.lukas-renggli.ch
>> >>
>> >> _______________________________________________
>> >> Pharo-project mailing list
>> >> [hidden email]
>> >> http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
>> >
>> >
>> > _______________________________________________
>> > Pharo-project mailing list
>> > [hidden email]
>> > http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
>> >
>>
>>
>>
>> --
>> Lukas Renggli
>> http://www.lukas-renggli.ch
>>
>> _______________________________________________
>> Pharo-project mailing list
>> [hidden email]
>> http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
>
>
> _______________________________________________
> Pharo-project mailing list
> [hidden email]
> http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
>



--
Lukas Renggli
http://www.lukas-renggli.ch

_______________________________________________
Pharo-project mailing list
[hidden email]
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
Reply | Threaded
Open this post in threaded view
|

Re: [Pharo-project] Failing Gofer test in windows [WAS] [BetaTesting] [ANN] Pharo1.0-10507-rc2dev10.01.2

Mariano Martinez Peck
hahahahahahahah

BTW...do you know who/when merges your latest gofer code into PharoCore?

Cheers

Mariano

On Mon, Jan 25, 2010 at 10:30 PM, Lukas Renggli <[hidden email]> wrote:
Ok, i passes now:

Name: Gofer-Tests-lr.115
Author: lr
Time: 25 January 2010, 10:30:34 pm
UUID: ec6e1ded-492e-470e-b41a-468265edfc9e
Ancestors: Gofer-Tests-lr.114

- killed a test

2010/1/25 Mariano Martinez Peck <[hidden email]>:
> Lukas, it is still failing because when you ask the description to first, it
> is ->
>
>  'C:\mariano\squeak\imagenes\Pharo1.0-10508-rc2dev10.01.2//*'
>
> Double slash. And that's due to
>
> MCSubDirectoryRepository >> description
>     ^ directory pathName, '/*'
>
>
> Cheers
>
> Mariano
>
>
> On Mon, Jan 25, 2010 at 9:46 PM, Lukas Renggli <[hidden email]> wrote:
>>
>> Thanks for figuring out. The following change should fix that problem:
>>
>> Name: Gofer-Tests-lr.114
>> Author: TestRunner
>> Time: 25 January 2010, 9:45:44 pm
>> UUID: 9dafc930-c2ed-4619-a7ce-d77984e17edd
>> Ancestors: Gofer-Tests-lr.113
>>
>> - fixed a bug in gofer under windows
>>
>> 2010/1/25 Mariano Martinez Peck <[hidden email]>:
>> >
>> >> I cannot reproduce the Gofer test failure. Can you debug it and/or
>> >> provide a stack trace?
>> >>
>> >
>> > Ok...I put off the dust from my virtual box image with windows and I
>> > could
>> > reproduce the problem.
>> >
>> > GoferApiTest >> testSubDirectoryRepository
>> >
>> > fails in
>> >
>> > self assert: gofer repositories: (Array with: FileDirectory default
>> > pathName
>> > , FileDirectory slash , '*')
>> >
>> > Because in assert: aGofer repositories: anArray   I can see that:
>> >
>> > "first description"  is ->
>> > 'C:\mariano\squeak\imagenes\Pharo1.0-10508-rc2dev10.01.2/*'
>> >
>> > and "second"  is  ->
>> > 'C:\mariano\squeak\imagenes\Pharo1.0-10508-rc2dev10.01.2\*'
>> >
>> > Notice the last slash. They are different.
>> >
>> > Cheers
>> >
>> > Mariano
>> >
>> >
>> >>
>> >> Lukas
>> >>
>> >> --
>> >> Lukas Renggli
>> >> http://www.lukas-renggli.ch
>> >>
>> >> _______________________________________________
>> >> Pharo-project mailing list
>> >> [hidden email]
>> >> http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
>> >
>> >
>> > _______________________________________________
>> > Pharo-project mailing list
>> > [hidden email]
>> > http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
>> >
>>
>>
>>
>> --
>> Lukas Renggli
>> http://www.lukas-renggli.ch
>>
>> _______________________________________________
>> Pharo-project mailing list
>> [hidden email]
>> http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
>
>
> _______________________________________________
> Pharo-project mailing list
> [hidden email]
> http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
>



--
Lukas Renggli
http://www.lukas-renggli.ch

_______________________________________________
Pharo-project mailing list
[hidden email]
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project


_______________________________________________
Pharo-project mailing list
[hidden email]
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
Reply | Threaded
Open this post in threaded view
|

Re: [Pharo-project] Failing Gofer test in windows [WAS] [BetaTesting] [ANN] Pharo1.0-10507-rc2dev10.01.2

Dale

----- "Mariano Martinez Peck" <[hidden email]> wrote:

| BTW...do you know who/when merges your latest gofer code into
| PharoCore?

I'll hold off ConfigurationOfGofer until the bugfix is merged into Pharo repository...

Dale

_______________________________________________
Pharo-project mailing list
[hidden email]
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
Reply | Threaded
Open this post in threaded view
|

Re: [Pharo-project] Failing Gofer test in windows [WAS] [BetaTesting] [ANN] Pharo1.0-10507-rc2dev10.01.2

Dale
On second thought .. I don't have too... I want to push Metacello 1.0-beta.22 today...

Dale
----- "Dale Henrichs" <[hidden email]> wrote:

| ----- "Mariano Martinez Peck" <[hidden email]> wrote:
|
| | BTW...do you know who/when merges your latest gofer code into
| | PharoCore?
|
| I'll hold off ConfigurationOfGofer until the bugfix is merged into
| Pharo repository...
|
| Dale
|
| _______________________________________________
| Pharo-project mailing list
| [hidden email]
| http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project

_______________________________________________
Pharo-project mailing list
[hidden email]
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
Reply | Threaded
Open this post in threaded view
|

Re: [Pharo-project] Failing Gofer test in windows [WAS] [BetaTesting] [ANN] Pharo1.0-10507-rc2dev10.01.2

Marcus Denker-4
In reply to this post by Mariano Martinez Peck

On Jan 25, 2010, at 10:59 PM, Mariano Martinez Peck wrote:

> hahahahahahahah
>
> BTW...do you know who/when merges your latest gofer code into PharoCore?
>

Just make a bug report and put the version in the inbox (and make sure it's mergable, that is,
provide all nececary intermediate versions)

        Marcus


--
Marcus Denker  -- http://www.marcusdenker.de
INRIA Lille -- Nord Europe. Team RMoD.


_______________________________________________
Pharo-project mailing list
[hidden email]
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
Reply | Threaded
Open this post in threaded view
|

Re: [Pharo-project] Failing Gofer test in windows [WAS] [BetaTesting] [ANN] Pharo1.0-10507-rc2dev10.01.2

Lukas Renggli
> Just make a bug report and put the version in the inbox (and make sure it's mergable, that is,
> provide all nececary intermediate versions)

It probably won't merge because I splitted the package into a Core and
a Test package, so the tests don't have to be present as well.

Lukas

--
Lukas Renggli
http://www.lukas-renggli.ch

_______________________________________________
Pharo-project mailing list
[hidden email]
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
Reply | Threaded
Open this post in threaded view
|

Re: [Pharo-project] Failing Gofer test in windows [WAS] [BetaTesting] [ANN] Pharo1.0-10507-rc2dev10.01.2

Marcus Denker-4

On Jan 25, 2010, at 11:43 PM, Lukas Renggli wrote:

>> Just make a bug report and put the version in the inbox (and make sure it's mergable, that is,
>> provide all nececary intermediate versions)
>
> It probably won't merge because I splitted the package into a Core and
> a Test package, so the tests don't have to be present as well.
>

I added two entries to the tracker (for 1.0 and 1.1)

--
Marcus Denker  -- http://www.marcusdenker.de
INRIA Lille -- Nord Europe. Team RMoD.


_______________________________________________
Pharo-project mailing list
[hidden email]
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
Reply | Threaded
Open this post in threaded view
|

Re: [Pharo-project] Failing Gofer test in windows [WAS] [BetaTesting] [ANN] Pharo1.0-10507-rc2dev10.01.2

Mariano Martinez Peck
In reply to this post by Lukas Renggli


On Mon, Jan 25, 2010 at 11:43 PM, Lukas Renggli <[hidden email]> wrote:
> Just make a bug report and put the version in the inbox (and make sure it's mergable, that is,
> provide all nececary intermediate versions)

It probably won't merge because I splitted the package into a Core and
a Test package, so the tests don't have to be present as well.


But in the latest images this is already merged. I mean, we have also those two packages.
 


Lukas

--
Lukas Renggli
http://www.lukas-renggli.ch

_______________________________________________


_______________________________________________
Pharo-project mailing list
[hidden email]
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
Reply | Threaded
Open this post in threaded view
|

Re: [Pharo-project] Failing Gofer test in windows [WAS] [BetaTesting] [ANN] Pharo1.0-10507-rc2dev10.01.2

Mariano Martinez Peck
In reply to this post by Lukas Renggli
Lukas...maybe MCSubDirectoryRepository >> description   is wrong and it should be

MCSubDirectoryRepository >> description
    ^ directory pathName, FileDirectory slash, '*'


What do you think ? 




On Mon, Jan 25, 2010 at 10:30 PM, Lukas Renggli <[hidden email]> wrote:
Ok, i passes now:

Name: Gofer-Tests-lr.115
Author: lr
Time: 25 January 2010, 10:30:34 pm
UUID: ec6e1ded-492e-470e-b41a-468265edfc9e
Ancestors: Gofer-Tests-lr.114

- killed a test

2010/1/25 Mariano Martinez Peck <[hidden email]>:
> Lukas, it is still failing because when you ask the description to first, it
> is ->
>
>  'C:\mariano\squeak\imagenes\Pharo1.0-10508-rc2dev10.01.2//*'
>
> Double slash. And that's due to
>
> MCSubDirectoryRepository >> description
>     ^ directory pathName, '/*'
>
>
> Cheers
>
> Mariano
>
>
> On Mon, Jan 25, 2010 at 9:46 PM, Lukas Renggli <[hidden email]> wrote:
>>
>> Thanks for figuring out. The following change should fix that problem:
>>
>> Name: Gofer-Tests-lr.114
>> Author: TestRunner
>> Time: 25 January 2010, 9:45:44 pm
>> UUID: 9dafc930-c2ed-4619-a7ce-d77984e17edd
>> Ancestors: Gofer-Tests-lr.113
>>
>> - fixed a bug in gofer under windows
>>
>> 2010/1/25 Mariano Martinez Peck <[hidden email]>:
>> >
>> >> I cannot reproduce the Gofer test failure. Can you debug it and/or
>> >> provide a stack trace?
>> >>
>> >
>> > Ok...I put off the dust from my virtual box image with windows and I
>> > could
>> > reproduce the problem.
>> >
>> > GoferApiTest >> testSubDirectoryRepository
>> >
>> > fails in
>> >
>> > self assert: gofer repositories: (Array with: FileDirectory default
>> > pathName
>> > , FileDirectory slash , '*')
>> >
>> > Because in assert: aGofer repositories: anArray   I can see that:
>> >
>> > "first description"  is ->
>> > 'C:\mariano\squeak\imagenes\Pharo1.0-10508-rc2dev10.01.2/*'
>> >
>> > and "second"  is  ->
>> > 'C:\mariano\squeak\imagenes\Pharo1.0-10508-rc2dev10.01.2\*'
>> >
>> > Notice the last slash. They are different.
>> >
>> > Cheers
>> >
>> > Mariano
>> >
>> >
>> >>
>> >> Lukas
>> >>
>> >> --
>> >> Lukas Renggli
>> >> http://www.lukas-renggli.ch
>> >>
>> >> _______________________________________________
>> >> Pharo-project mailing list
>> >> [hidden email]
>> >> http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
>> >
>> >
>> > _______________________________________________
>> > Pharo-project mailing list
>> > [hidden email]
>> > http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
>> >
>>
>>
>>
>> --
>> Lukas Renggli
>> http://www.lukas-renggli.ch
>>
>> _______________________________________________
>> Pharo-project mailing list
>> [hidden email]
>> http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
>
>
> _______________________________________________
> Pharo-project mailing list
> [hidden email]
> http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
>



--
Lukas Renggli
http://www.lukas-renggli.ch

_______________________________________________
Pharo-project mailing list
[hidden email]
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project


_______________________________________________
Pharo-project mailing list
[hidden email]
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
Reply | Threaded
Open this post in threaded view
|

Re: [Pharo-project] Failing Gofer test in windows [WAS] [BetaTesting] [ANN] Pharo1.0-10507-rc2dev10.01.2

Lukas Renggli
In reply to this post by Mariano Martinez Peck
Aha, ok. Then it is easy. I assume that Gofer stabilizes now.

Lukas

On Tuesday, January 26, 2010, Mariano Martinez Peck
<[hidden email]> wrote:

>
>
> On Mon, Jan 25, 2010 at 11:43 PM, Lukas Renggli <[hidden email]> wrote:
>
>> Just make a bug report and put the version in the inbox (and make sure it's mergable, that is,
>> provide all nececary intermediate versions)
>
> It probably won't merge because I splitted the package into a Core and
> a Test package, so the tests don't have to be present as well.
>
>
> But in the latest images this is already merged. I mean, we have also those two packages.
>
>
>
>
>
> Lukas
>
> --
> Lukas Renggli
> http://www.lukas-renggli.ch
>
> _______________________________________________
> Pharo-project mailing list
> [hidden email]
> http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
>
>

--
Lukas Renggli
http://www.lukas-renggli.ch

_______________________________________________
Pharo-project mailing list
[hidden email]
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
Reply | Threaded
Open this post in threaded view
|

Re: [Pharo-project] Failing Gofer test in windows [WAS] [BetaTesting] [ANN] Pharo1.0-10507-rc2dev10.01.2

Lukas Renggli
In reply to this post by Mariano Martinez Peck
Yeah it is not clean, but your suggestion would probably the gofer
test on platforms other than mac. It's not worth to worry, that string
is only used in UIs anyway.

Lukas

On Tuesday, January 26, 2010, Mariano Martinez Peck
<[hidden email]> wrote:

> Lukas...maybe MCSubDirectoryRepository >> description   is wrong and it should be
>
> MCSubDirectoryRepository >> description
>     ^ directory pathName, FileDirectory slash, '*'
>
>
> What do you think ?
>
>
>
>
> On Mon, Jan 25, 2010 at 10:30 PM, Lukas Renggli <[hidden email]> wrote:
> Ok, i passes now:
>
> Name: Gofer-Tests-lr.115
> Author: lr
> Time: 25 January 2010, 10:30:34 pm
> UUID: ec6e1ded-492e-470e-b41a-468265edfc9e
> Ancestors: Gofer-Tests-lr.114
>
> - killed a test
>
> 2010/1/25 Mariano Martinez Peck <[hidden email]>:
>> Lukas, it is still failing because when you ask the description to first, it
>> is ->
>>
>>  'C:\mariano\squeak\imagenes\Pharo1.0-10508-rc2dev10.01.2//*'
>>
>> Double slash. And that's due to
>>
>> MCSubDirectoryRepository >> description
>>     ^ directory pathName, '/*'
>>
>>
>> Cheers
>>
>> Mariano
>>
>>
>> On Mon, Jan 25, 2010 at 9:46 PM, Lukas Renggli <[hidden email]> wrote:
>>>
>>> Thanks for figuring out. The following change should fix that problem:
>>>
>>> Name: Gofer-Tests-lr.114
>>> Author: TestRunner
>>> Time: 25 January 2010, 9:45:44 pm
>>> UUID: 9dafc930-c2ed-4619-a7ce-d77984e17edd
>>> Ancestors: Gofer-Tests-lr.113
>>>
>>> - fixed a bug in gofer under windows
>>>
>>> 2010/1/25 Mariano Martinez Peck <[hidden email]>:
>>> >
>>> >> I cannot reproduce the Gofer test failure. Can you debug it and/or
>>> >> provide a stack trace?
>>> >>
>>> >
>>> > Ok...I put off the dust from my virtual box image with windows and I
>>> > could
>>> > reproduce the problem.
>>> >
>>> > GoferApiTest >> testSubDirectoryRepository
>>> >
>>> > fails in
>>> >
>>> > self assert: gofer repositories: (Array with: FileDirectory default
>>> > pathName
>>> > , FileDirectory slash , '*')
>>> >
>>> > Because in assert: aGofer repositories: anArray   I can see that:
>>> >
>>> > "first description"  is ->
>>> > 'C:\mariano\squeak\imagenes\Pharo1.0-10508-rc2dev10.01.2/*'
>>> >
>>> > and "second"  is  ->
>>> > 'C:\mariano\squeak\imagenes\Pharo1.0-10508-rc2dev10.01.2\*'
>>> >
>>> > Notice the last slash. They are different.
>>> >
>>> > Cheers
>>> >
>>> > Mariano
>>> >
>>> >
>>> >>
>>> >> Lukas
>>> >>
>>> >> --
>>> >> Lukas Renggli
>>> >> http://www.lukas-renggli.ch
>>> >>
>>> >> _______________________________________________
>>> >> Pharo-project mailing list
>>> >> [hidden email]
>>> >> http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
>>> >
>>> >
>>> > _______________________________________________
>>> > Pharo-project mailing list
>>> > [hidden email]
>>> > http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
>>> >
>>>
>>>
>>>
>>> --
>>> Lukas Renggli
>>> http://www.lukas-renggli.ch
>>>
>>> _______________________________________________
>>> Pharo-project mailing list
>>> [hidden email]
>>>  <http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project>

--
Lukas Renggli
http://www.lukas-renggli.ch

_______________________________________________
Pharo-project mailing list
[hidden email]
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project