Where was fileutils gone?

View: New views
5 Messages — Rating Filter:   Alert me  

Where was fileutils gone?

by Yoko Harada :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Today, many embed test failed because of the error:

    /Users/yoko/DevSpace/jruby~main/lib/ruby/1.8/tmpdir.rb:7:in
`require': IO error -- fileutils (LoadError)

This happned on rev a0decb3. The tests passed successfully on rev
481fa4d, so a change after that causes this error.
Where was fileutils gone?

-Yoko

---------------------------------------------------------------------
To unsubscribe from this list, please visit:

    http://xircles.codehaus.org/manage_email



Re: Where was fileutils gone?

by Hirotsugu Asari :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

If you keep up with trunk, often build artifacts get in the way over  
time. Try 'ant clean jar', which I find effective in such a case.

--
Hiro

On Nov 6, 2009, at 8:31 AM, Yoko Harada <yokolet@...> wrote:

> Today, many embed test failed because of the error:
>
>    /Users/yoko/DevSpace/jruby~main/lib/ruby/1.8/tmpdir.rb:7:in
> `require': IO error -- fileutils (LoadError)
>
> This happned on rev a0decb3. The tests passed successfully on rev
> 481fa4d, so a change after that causes this error.
> Where was fileutils gone?
>
> -Yoko
>
> ---------------------------------------------------------------------
> To unsubscribe from this list, please visit:
>
>    http://xircles.codehaus.org/manage_email
>
>

---------------------------------------------------------------------
To unsubscribe from this list, please visit:

    http://xircles.codehaus.org/manage_email



Re: Where was fileutils gone?

by Yoko Harada :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

On Fri, Nov 6, 2009 at 10:25 AM, Hirotsugu Asari <asari.ruby@...> wrote:
> If you keep up with trunk, often build artifacts get in the way over time.
> Try 'ant clean jar', which I find effective in such a case.

Thank you. You're right. After I did "ant clean," all tests passed.

-Yoko

>
> --
> Hiro
>
> On Nov 6, 2009, at 8:31 AM, Yoko Harada <yokolet@...> wrote:
>
>> Today, many embed test failed because of the error:
>>
>>   /Users/yoko/DevSpace/jruby~main/lib/ruby/1.8/tmpdir.rb:7:in
>> `require': IO error -- fileutils (LoadError)
>>
>> This happned on rev a0decb3. The tests passed successfully on rev
>> 481fa4d, so a change after that causes this error.
>> Where was fileutils gone?
>>
>> -Yoko
>>
>> ---------------------------------------------------------------------
>> To unsubscribe from this list, please visit:
>>
>>   http://xircles.codehaus.org/manage_email
>>
>>
>
> ---------------------------------------------------------------------
> To unsubscribe from this list, please visit:
>
>   http://xircles.codehaus.org/manage_email
>
>
>

---------------------------------------------------------------------
To unsubscribe from this list, please visit:

    http://xircles.codehaus.org/manage_email



Re: Where was fileutils gone?

by Vladimir Sizikov-2 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Hi Yoko,

While we're at it, how do you launch you test runs for the embedded stuff?
'ant run-junit-embed' or something else?
When running 'ant run-junit-embed', I see occasional stacktraces
during the runs,
but the end result is all OK. Is that how it is supposed to be?

Thanks,
  --Vladimir

On Fri, Nov 6, 2009 at 6:27 PM, Yoko Harada <yokolet@...> wrote:

> On Fri, Nov 6, 2009 at 10:25 AM, Hirotsugu Asari <asari.ruby@...> wrote:
>> If you keep up with trunk, often build artifacts get in the way over time.
>> Try 'ant clean jar', which I find effective in such a case.
>
> Thank you. You're right. After I did "ant clean," all tests passed.
>
> -Yoko
>
>>
>> --
>> Hiro
>>
>> On Nov 6, 2009, at 8:31 AM, Yoko Harada <yokolet@...> wrote:
>>
>>> Today, many embed test failed because of the error:
>>>
>>>   /Users/yoko/DevSpace/jruby~main/lib/ruby/1.8/tmpdir.rb:7:in
>>> `require': IO error -- fileutils (LoadError)
>>>
>>> This happned on rev a0decb3. The tests passed successfully on rev
>>> 481fa4d, so a change after that causes this error.
>>> Where was fileutils gone?
>>>
>>> -Yoko
>>>
>>> ---------------------------------------------------------------------
>>> To unsubscribe from this list, please visit:
>>>
>>>   http://xircles.codehaus.org/manage_email
>>>
>>>
>>
>> ---------------------------------------------------------------------
>> To unsubscribe from this list, please visit:
>>
>>   http://xircles.codehaus.org/manage_email
>>
>>
>>
>
> ---------------------------------------------------------------------
> To unsubscribe from this list, please visit:
>
>    http://xircles.codehaus.org/manage_email
>
>
>

---------------------------------------------------------------------
To unsubscribe from this list, please visit:

    http://xircles.codehaus.org/manage_email



Re: Where was fileutils gone?

by Yoko Harada :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Hi Vladimir,

On Fri, Nov 6, 2009 at 2:17 PM, Vladimir Sizikov <vsizikov@...> wrote:
> Hi Yoko,
>
> While we're at it, how do you launch you test runs for the embedded stuff?
> 'ant run-junit-embed' or something else?

I run 'ant run-junit-embed' and click run-junit-embed target on NetBeans.

> When running 'ant run-junit-embed', I see occasional stacktraces
> during the runs,
> but the end result is all OK. Is that how it is supposed to be?

Exceptions raised NOT from MultipleScriptsRunnerTest are normal. I'm
testing whether the exceptions are raised as I expected or not. But,
exceptions from MultipleScriptsRunnerTest show something wrong are
happening there. In that test, I'm trying to test all scripts under
the test directory. Some of exceptions are perhaps raised because
usages are wrong. Some of them are probably bugs of embedding API or
JRuby only when scripts are executed from embedding API.

I should fix bugs and usages, but currently, I run
MultipleScriptsRunnerTest to know things are not going worse. So, I
neglect all exceptions so that test can go through as many test as
possible. This is why results are OK although exceptions are raised.

BTW, thank you for testing embedding. Your report was helpful since I
don't have windows at all.

-Yoko

>
> Thanks,
>  --Vladimir
>
> On Fri, Nov 6, 2009 at 6:27 PM, Yoko Harada <yokolet@...> wrote:
>> On Fri, Nov 6, 2009 at 10:25 AM, Hirotsugu Asari <asari.ruby@...> wrote:
>>> If you keep up with trunk, often build artifacts get in the way over time.
>>> Try 'ant clean jar', which I find effective in such a case.
>>
>> Thank you. You're right. After I did "ant clean," all tests passed.
>>
>> -Yoko
>>
>>>
>>> --
>>> Hiro
>>>
>>> On Nov 6, 2009, at 8:31 AM, Yoko Harada <yokolet@...> wrote:
>>>
>>>> Today, many embed test failed because of the error:
>>>>
>>>>   /Users/yoko/DevSpace/jruby~main/lib/ruby/1.8/tmpdir.rb:7:in
>>>> `require': IO error -- fileutils (LoadError)
>>>>
>>>> This happned on rev a0decb3. The tests passed successfully on rev
>>>> 481fa4d, so a change after that causes this error.
>>>> Where was fileutils gone?
>>>>
>>>> -Yoko
>>>>
>>>> ---------------------------------------------------------------------
>>>> To unsubscribe from this list, please visit:
>>>>
>>>>   http://xircles.codehaus.org/manage_email
>>>>
>>>>
>>>
>>> ---------------------------------------------------------------------
>>> To unsubscribe from this list, please visit:
>>>
>>>   http://xircles.codehaus.org/manage_email
>>>
>>>
>>>
>>
>> ---------------------------------------------------------------------
>> To unsubscribe from this list, please visit:
>>
>>    http://xircles.codehaus.org/manage_email
>>
>>
>>
>
> ---------------------------------------------------------------------
> To unsubscribe from this list, please visit:
>
>    http://xircles.codehaus.org/manage_email
>
>
>

---------------------------------------------------------------------
To unsubscribe from this list, please visit:

    http://xircles.codehaus.org/manage_email