Stickman | 13 Nov 2011 19:27
Picon

Trouble installing BE on mac osx (10.7)

I'm working on installing be on my Mac. When I test install (sudo make test) I get 8 failures and 1 error.
I am very green at this kind of thing and am not sure what to do. Below is the report. Any suggestions would be greatly appreciated.

======================================================================
ERROR: test_get (libbe.storage.http.GetPostUrlTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/Users/stickman/github/be/libbe/storage/http.py", line 339, in test_get
    page,final_url,info = get_post_url(url=url)
  File "/Users/stickman/github/be/libbe/storage/http.py", line 118, in get_post_url
    raise InvalidURL(error=e, url=url, msg=msg)
InvalidURL: The server couldn't fulfill the request.
URL: http://bugseverywhere.org/be/show/HomePage
Error code: 404

======================================================================
FAIL: get_command (libbe.command.base)
Doctest: libbe.command.base.get_command
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/doctest.py", line 2166, in runTest
    raise self.failureException(self.format_failure(new.getvalue()))
AssertionError: Failed doctest test for libbe.command.base.get_command
  File "/Users/stickman/github/be/libbe/command/base.py", line 68, in get_command

----------------------------------------------------------------------
File "/Users/stickman/github/be/libbe/command/base.py", line 71, in libbe.command.base.get_command
Failed example:
    try:
        get_command('asdf')
    except UnknownCommand, e:
        print e
Expected:
    Unknown command 'asdf'
Got:
    Unknown command 'asdf'
    (No module named asdf)


======================================================================
FAIL: test_get_redirect (libbe.storage.http.GetPostUrlTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/Users/stickman/github/be/libbe/storage/http.py", line 349, in test_get_redirect
    % (expected, final_url))
AssertionError: Redirect?
  Expected: "http://bugseverywhere.org/be/show/HomePage"
  Got:      "http://bugseverywhere.org"

======================================================================
FAIL: test_installed (libbe.storage.vcs.base.ArchVCS_installed_TestCase)
See if the VCS is installed.
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/Users/stickman/github/be/libbe/storage/vcs/base.py", line 1042, in test_installed
    '%(name)s VCS not found' % vars(self.Class))
AssertionError: arch VCS not found

======================================================================
FAIL: test_installed (libbe.storage.vcs.base.BzrVCS_installed_TestCase)
See if the VCS is installed.
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/Users/stickman/github/be/libbe/storage/vcs/base.py", line 1042, in test_installed
    '%(name)s VCS not found' % vars(self.Class))
AssertionError: bzr VCS not found

======================================================================
FAIL: test_installed (libbe.storage.vcs.base.DarcsVCS_installed_TestCase)
See if the VCS is installed.
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/Users/stickman/github/be/libbe/storage/vcs/base.py", line 1042, in test_installed
    '%(name)s VCS not found' % vars(self.Class))
AssertionError: darcs VCS not found

======================================================================
FAIL: test_installed (libbe.storage.vcs.base.HgVCS_installed_TestCase)
See if the VCS is installed.
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/Users/stickman/github/be/libbe/storage/vcs/base.py", line 1042, in test_installed
    '%(name)s VCS not found' % vars(self.Class))
AssertionError: hg VCS not found

======================================================================
FAIL: test_installed (libbe.storage.vcs.base.MonotoneVCS_installed_TestCase)
See if the VCS is installed.
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/Users/stickman/github/be/libbe/storage/vcs/base.py", line 1042, in test_installed
    '%(name)s VCS not found' % vars(self.Class))
AssertionError: monotone VCS not found

======================================================================
FAIL: Pipe (libbe.util.subproc)
Doctest: libbe.util.subproc.Pipe
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/doctest.py", line 2166, in runTest
    raise self.failureException(self.format_failure(new.getvalue()))
AssertionError: Failed doctest test for libbe.util.subproc.Pipe
  File "/Users/stickman/github/be/libbe/util/subproc.py", line 98, in Pipe

----------------------------------------------------------------------
File "/Users/stickman/github/be/libbe/util/subproc.py", line 109, in libbe.util.subproc.Pipe
Failed example:
    p.stdout
Expected:
    '/etc/ssh\n'
Got:
    ''
----------------------------------------------------------------------
File "/Users/stickman/github/be/libbe/util/subproc.py", line 113, in libbe.util.subproc.Pipe
Failed example:
    p.statuses
Expected:
    [1, 0]
Got:
    [0, 1]
----------------------------------------------------------------------
File "/Users/stickman/github/be/libbe/util/subproc.py", line 115, in libbe.util.subproc.Pipe
Failed example:
    p.stderrs # doctest: +ELLIPSIS
Expected:
    [...find: ...: Permission denied..., '']
Got:
    ['', '']


----------------------------------------------------------------------
Ran 298 tests in 12.076s

FAILED (failures=8, errors=1)
make: *** [test] Error 9

_______________________________________________
Be-devel mailing list
Be-devel <at> bugseverywhere.org
http://void.printf.net/cgi-bin/mailman/listinfo/be-devel
Phil Schumm | 13 Nov 2011 20:17
Favicon
Gravatar

Re: Trouble installing BE on mac osx (10.7)

On Nov 13, 2011, at 12:27 PM, Stickman wrote:
> I'm working on installing be on my Mac. When I test install (sudo make test) I get 8 failures and 1 error. I am
very green at this kind of thing and am not sure what to do. Below is the report. Any suggestions would be
greatly appreciated.

Several of these failures are because you don't have the corresponding VCS installed (i.e., Arch, Bazaar,
Darcs, Mercurial and Monotone), and are thus to be expected (if you really don't have them installed, or if
be can't find them).  One of the errors (test_get) and another failure (test_get_redirect) are network
related; these will both fail (with different messages) if you do not have an internet connection.  I can't
immediately tell (from the tracebacks) what the problem is in your case, but others might be able to (you
might be able to ignore these if you're using be locally).  The test (libbe.util.subproc.Pipe) fails for
me too, and I haven't had a chance yet to look into why -- FWIW, I haven't noticed any problems in using be
despite this.  Finally, the failure for get_command is a
  minor error in the test itself (it's expecting "Unknown command 'asdf'" but getting "Unknown command
'asdf' (No module named asdf)"), and can be ignored without consequence.

-- Phil
Phil Schumm | 13 Nov 2011 20:22
Favicon
Gravatar

Re: Trouble installing BE on mac osx (10.7)

On Nov 13, 2011, at 12:27 PM, Stickman wrote:
> I'm working on installing be on my Mac.

Forgot to mention that I am happily using be on OS X 10.7.2, so it is worth persevering.

-- Phil
Stickman | 13 Nov 2011 20:40
Picon

Re: Trouble installing BE on mac osx (10.7)

Thanks Adam and Phil.
I just finally upgraded to Lion a few days ago. Trying to catch up with Adam on this stuff.
So I got Trevor Kings repo and came up with one error when running "sudo make test"

  File "/Users/stickman/github/be/libbe/storage/util/config.py", line 34, in <module>
    default_encoding = libbe.util.encoding.get_filesystem_encoding()
AttributeError: 'module' object has no attribute 'get_filesystem_encoding'
make: *** [test] Error 1

Is this something to be concerned about?


On Sun, Nov 13, 2011 at 2:22 PM, Phil Schumm <pschumm <at> uchicago.edu> wrote:
On Nov 13, 2011, at 12:27 PM, Stickman wrote:
> I'm working on installing be on my Mac.



Forgot to mention that I am happily using be on OS X 10.7.2, so it is worth persevering.


-- Phil


_______________________________________________
Be-devel mailing list
Be-devel <at> bugseverywhere.org
http://void.printf.net/cgi-bin/mailman/listinfo/be-devel
Adam Merrifield | 14 Nov 2011 01:51
Picon
Gravatar

Re: Trouble installing BE on mac osx (10.7)

<at> Stickman, I guess if you ran make and and the ran $ be --help and all is good I'd say no. Really, getting $ be --help was the my biggest hurdle (that Phil helped me get to)

<at> Phil, for what it's worth, I published step by step instructions (the ones that Stickman is working to) of how to install "be" on Lion, largely based on the help you gave me:
http://adam.merrifield.ca/2011/10/31/installing-bugs-everywhere/

Adam Merrifield (out of office)
seyDoggy vCard: seydoggy.com/vcard
seyDesign vCard: seydesign.com/vcard

On 2011-11-13, at 14:40, Stickman <stickman.kiti <at> gmail.com> wrote:

Thanks Adam and Phil.
I just finally upgraded to Lion a few days ago. Trying to catch up with Adam on this stuff.
So I got Trevor Kings repo and came up with one error when running "sudo make test"

  File "/Users/stickman/github/be/libbe/storage/util/config.py", line 34, in <module>
    default_encoding = libbe.util.encoding.get_filesystem_encoding()
AttributeError: 'module' object has no attribute 'get_filesystem_encoding'
make: *** [test] Error 1

Is this something to be concerned about?


On Sun, Nov 13, 2011 at 2:22 PM, Phil Schumm <pschumm <at> uchicago.edu> wrote:
On Nov 13, 2011, at 12:27 PM, Stickman wrote:
> I'm working on installing be on my Mac.



Forgot to mention that I am happily using be on OS X 10.7.2, so it is worth persevering.


-- Phil


_______________________________________________
Be-devel mailing list
Be-devel <at> bugseverywhere.org
http://void.printf.net/cgi-bin/mailman/listinfo/be-devel
_______________________________________________
Be-devel mailing list
Be-devel <at> bugseverywhere.org
http://void.printf.net/cgi-bin/mailman/listinfo/be-devel
Stickman | 14 Nov 2011 22:06
Picon

Re: Trouble installing BE on mac osx (10.7)

Okay, I've gone forward on this and here's what running "$ be --help" produces

Traceback (most recent call last):
  File "/usr/local/bin/be", line 24, in <module>
    import libbe.ui.command_line
ImportError: No module named libbe.ui.command_line


When I ran the make install I got a whole lot of warnings like this

None:None: WARNING: toctree contains reference to nonexisting document 'libbe/libbe.ui.command_line.CmdOptionParser.set_process_default_values'
None:None: WARNING: toctree contains reference to nonexisting document 'libbe/libbe.ui.command_line.CmdOptionParser.set_usage'
None:None: WARNING: toctree contains reference to nonexisting document 'libbe/libbe.ui.command_line.CommandLine.cleanup'
None:None: WARNING: toctree contains reference to nonexisting document 'libbe/libbe.ui.command_line.CommandLine.help'
None:None: WARNING: toctree contains reference to nonexisting document 'libbe/libbe.ui.command_line.CommandLine.run'
None:None: WARNING: toctree contains reference to nonexisting document 'libbe/libbe.ui.command_line.CommandLine.setup_command'
<autosummary>:None: WARNING: toctree contains reference to nonexisting document 'libbe/libbe.ui.command_line.BE.cleanup'
<autosummary>:None: WARNING: toctree contains reference to nonexisting document 'libbe/libbe.ui.command_line.BE.complete'
<autosummary>:None: WARNING: toctree contains reference to nonexisting document 'libbe/libbe.ui.command_line.BE.full_version'
<autosummary>:None: WARNING: toctree contains reference to nonexisting document 'libbe/libbe.ui.command_line.BE.help'
<autosummary>:None: WARNING: toctree contains reference to nonexisting document 'libbe/libbe.ui.command_line.BE.run'


I did end up with "build succeeded, 2727 warnings"

All in all, I'd say I did something wrong.





On Sun, Nov 13, 2011 at 7:51 PM, Adam Merrifield <macagp <at> gmail.com> wrote:
<at> Stickman, I guess if you ran make and and the ran $ be --help and all is good I'd say no. Really, getting $ be --help was the my biggest hurdle (that Phil helped me get to)

<at> Phil, for what it's worth, I published step by step instructions (the ones that Stickman is working to) of how to install "be" on Lion, largely based on the help you gave me:
http://adam.merrifield.ca/2011/10/31/installing-bugs-everywhere/

Adam Merrifield (out of office)
seyDoggy vCard: seydoggy.com/vcard
seyDesign vCard: seydesign.com/vcard

On 2011-11-13, at 14:40, Stickman <stickman.kiti <at> gmail.com> wrote:

Thanks Adam and Phil.
I just finally upgraded to Lion a few days ago. Trying to catch up with Adam on this stuff.
So I got Trevor Kings repo and came up with one error when running "sudo make test"

  File "/Users/stickman/github/be/libbe/storage/util/config.py", line 34, in <module>
    default_encoding = libbe.util.encoding.get_filesystem_encoding()
AttributeError: 'module' object has no attribute 'get_filesystem_encoding'
make: *** [test] Error 1

Is this something to be concerned about?


On Sun, Nov 13, 2011 at 2:22 PM, Phil Schumm <pschumm <at> uchicago.edu> wrote:
On Nov 13, 2011, at 12:27 PM, Stickman wrote:
> I'm working on installing be on my Mac.



Forgot to mention that I am happily using be on OS X 10.7.2, so it is worth persevering.


-- Phil


_______________________________________________
Be-devel mailing list
Be-devel <at> bugseverywhere.org
http://void.printf.net/cgi-bin/mailman/listinfo/be-devel

_______________________________________________
Be-devel mailing list
Be-devel <at> bugseverywhere.org
http://void.printf.net/cgi-bin/mailman/listinfo/be-devel


_______________________________________________
Be-devel mailing list
Be-devel <at> bugseverywhere.org
http://void.printf.net/cgi-bin/mailman/listinfo/be-devel
Phil Schumm | 14 Nov 2011 22:24
Favicon
Gravatar

Re: Trouble installing BE on mac osx (10.7)

On Nov 14, 2011, at 3:06 PM, Stickman wrote:
> Okay, I've gone forward on this and here's what running "$ be --help" produces
> 
> *Traceback (most recent call last):*
> *  File "/usr/local/bin/be", line 24, in <module>*
> *    import libbe.ui.command_line*
> *ImportError: No module named libbe.ui.command_line*

That's an easy one; the place where the be module (i.e., libbe) is installed is not on your `PYTHONPATH`. 
Personally, I have this module installed at

    /usr/local/lib/python2.7/site-packages

and have added this to my `PYTHONPATH` by adding the path above to the file

    /Library/Python/2.7/site-packages/easy-install.pth

(this is only one of several ways to modify your `PYTHONPATH`).  However, in retrospect the default setting
is probably better in many cases; namely, to use the `--user` option during installation which will
install in

    ~/.local/lib/python2.7/site-packages

as described in a recent post by Trevor King.  Quoting from that post:

On Nov 8, 2011, at 6:23 AM, W. Trevor King wrote:
> If you install there, you shouldn't need to tweak your `PYTHONPATH`, but you may need to add
> 
>     ~/.local/bin/
> 
> to your `PATH`.

-- Phil
Stickman | 14 Nov 2011 22:40
Picon

Re: Trouble installing BE on mac osx (10.7)

oops! Step #4 in Adam's instructions. 

I must have forgotten to go back and do that after I installed easy-install

It looks like I'm working now. 
Thank you guys for your help!


On Mon, Nov 14, 2011 at 4:24 PM, Phil Schumm <pschumm <at> uchicago.edu> wrote:
On Nov 14, 2011, at 3:06 PM, Stickman wrote:
> Okay, I've gone forward on this and here's what running "$ be --help" produces
>
> *Traceback (most recent call last):*
> *  File "/usr/local/bin/be", line 24, in <module>*
> *    import libbe.ui.command_line*
> *ImportError: No module named libbe.ui.command_line*


That's an easy one; the place where the be module (i.e., libbe) is installed is not on your `PYTHONPATH`.  Personally, I have this module installed at

   /usr/local/lib/python2.7/site-packages

and have added this to my `PYTHONPATH` by adding the path above to the file

   /Library/Python/2.7/site-packages/easy-install.pth

(this is only one of several ways to modify your `PYTHONPATH`).  However, in retrospect the default setting is probably better in many cases; namely, to use the `--user` option during installation which will install in

   ~/.local/lib/python2.7/site-packages

as described in a recent post by Trevor King.  Quoting from that post:

On Nov 8, 2011, at 6:23 AM, W. Trevor King wrote:
> If you install there, you shouldn't need to tweak your `PYTHONPATH`, but you may need to add
>
>     ~/.local/bin/
>
> to your `PATH`.


-- Phil


_______________________________________________
Be-devel mailing list
Be-devel <at> bugseverywhere.org
http://void.printf.net/cgi-bin/mailman/listinfo/be-devel
W. Trevor King | 14 Nov 2011 03:22
Picon
Favicon

Re: Trouble installing BE on mac osx (10.7)

On Sun, Nov 13, 2011 at 02:40:17PM -0500, Stickman wrote:
>   File "/Users/stickman/github/be/libbe/storage/util/config.py", line 34,
> in <module>
>     default_encoding = libbe.util.encoding.get_filesystem_encoding()
> AttributeError: 'module' object has no attribute 'get_filesystem_encoding'
> make: *** [test] Error 1
> 
> Is this something to be concerned about?

Yes ;).  I seem to have borked a commit on November 8th.  I've just
fixed it and pushed my changes.  The unit tests all pass on my home
box (for the VCSs I have installed).  I suppose I should have run them
earlier :p.

Anyhow, pull commit 6f2d652b2697 and everything should work.

Cheers,
Trevor

--

-- 
This email may be signed or encrypted with GnuPG (http://www.gnupg.org).
For more information, see http://en.wikipedia.org/wiki/Pretty_Good_Privacy
_______________________________________________
Be-devel mailing list
Be-devel <at> bugseverywhere.org
http://void.printf.net/cgi-bin/mailman/listinfo/be-devel
Adam Merrifield | 14 Nov 2011 01:50
Picon
Gravatar

Re: Trouble installing BE on mac osx (10.7)

I keep sending my replies privately. For posterity i will record them here...

Fancy meeting you here. ;)

FAIL: test_installed (libbe.storage.vcs.base.ArchVCS_installed_TestCase)
See if the VCS is installed.

You're not using arch so this doesn't matter.

FAIL: test_installed (libbe.storage.vcs.base.BzrVCS_installed_TestCase)
See if the VCS is installed.

You're not using bzr so this doesn't matter.

FAIL: test_installed (libbe.storage.vcs.base.DarcsVCS_installed_TestCase)
See if the VCS is installed.

You're not using darcs so this doesn't matter.

FAIL: test_installed (libbe.storage.vcs.base.HgVCS_installed_TestCase)
See if the VCS is installed.

You're not using mercurial (hg) so this doesn't matter.

FAIL: test_installed (libbe.storage.vcs.base.MonotoneVCS_installed_TestCase)
See if the VCS is installed.


You're not using monotone so this doesn't matter.

The other ones I'm not too sure about but I know one or two of them are not present in trevor kings repo, which is the one I ultimately went with on both the server and desktop:

http://gitorious.org/~wking/be/wtk

Adam Merrifield (out of office)
seyDoggy vCard: seydoggy.com/vcard
seyDesign vCard: seydesign.com/vcard

On 2011-11-13, at 13:27, Stickman <stickman.kiti <at> gmail.com> wrote:

I'm working on installing be on my Mac. When I test install (sudo make test) I get 8 failures and 1 error.
I am very green at this kind of thing and am not sure what to do. Below is the report. Any suggestions would be greatly appreciated.

======================================================================
ERROR: test_get (libbe.storage.http.GetPostUrlTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/Users/stickman/github/be/libbe/storage/http.py", line 339, in test_get
    page,final_url,info = get_post_url(url=url)
  File "/Users/stickman/github/be/libbe/storage/http.py", line 118, in get_post_url
    raise InvalidURL(error=e, url=url, msg=msg)
InvalidURL: The server couldn't fulfill the request.
URL: http://bugseverywhere.org/be/show/HomePage
Error code: 404

======================================================================
FAIL: get_command (libbe.command.base)
Doctest: libbe.command.base.get_command
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/doctest.py", line 2166, in runTest
    raise self.failureException(self.format_failure(new.getvalue()))
AssertionError: Failed doctest test for libbe.command.base.get_command
  File "/Users/stickman/github/be/libbe/command/base.py", line 68, in get_command

----------------------------------------------------------------------
File "/Users/stickman/github/be/libbe/command/base.py", line 71, in libbe.command.base.get_command
Failed example:
    try:
        get_command('asdf')
    except UnknownCommand, e:
        print e
Expected:
    Unknown command 'asdf'
Got:
    Unknown command 'asdf'
    (No module named asdf)


======================================================================
FAIL: test_get_redirect (libbe.storage.http.GetPostUrlTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/Users/stickman/github/be/libbe/storage/http.py", line 349, in test_get_redirect
    % (expected, final_url))
AssertionError: Redirect?
  Expected: "http://bugseverywhere.org/be/show/HomePage"
  Got:      "http://bugseverywhere.org"

======================================================================
FAIL: test_installed (libbe.storage.vcs.base.ArchVCS_installed_TestCase)
See if the VCS is installed.
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/Users/stickman/github/be/libbe/storage/vcs/base.py", line 1042, in test_installed
    '%(name)s VCS not found' % vars(self.Class))
AssertionError: arch VCS not found

======================================================================
FAIL: test_installed (libbe.storage.vcs.base.BzrVCS_installed_TestCase)
See if the VCS is installed.
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/Users/stickman/github/be/libbe/storage/vcs/base.py", line 1042, in test_installed
    '%(name)s VCS not found' % vars(self.Class))
AssertionError: bzr VCS not found

======================================================================
FAIL: test_installed (libbe.storage.vcs.base.DarcsVCS_installed_TestCase)
See if the VCS is installed.
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/Users/stickman/github/be/libbe/storage/vcs/base.py", line 1042, in test_installed
    '%(name)s VCS not found' % vars(self.Class))
AssertionError: darcs VCS not found

======================================================================
FAIL: test_installed (libbe.storage.vcs.base.HgVCS_installed_TestCase)
See if the VCS is installed.
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/Users/stickman/github/be/libbe/storage/vcs/base.py", line 1042, in test_installed
    '%(name)s VCS not found' % vars(self.Class))
AssertionError: hg VCS not found

======================================================================
FAIL: test_installed (libbe.storage.vcs.base.MonotoneVCS_installed_TestCase)
See if the VCS is installed.
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/Users/stickman/github/be/libbe/storage/vcs/base.py", line 1042, in test_installed
    '%(name)s VCS not found' % vars(self.Class))
AssertionError: monotone VCS not found

======================================================================
FAIL: Pipe (libbe.util.subproc)
Doctest: libbe.util.subproc.Pipe
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/doctest.py", line 2166, in runTest
    raise self.failureException(self.format_failure(new.getvalue()))
AssertionError: Failed doctest test for libbe.util.subproc.Pipe
  File "/Users/stickman/github/be/libbe/util/subproc.py", line 98, in Pipe

----------------------------------------------------------------------
File "/Users/stickman/github/be/libbe/util/subproc.py", line 109, in libbe.util.subproc.Pipe
Failed example:
    p.stdout
Expected:
    '/etc/ssh\n'
Got:
    ''
----------------------------------------------------------------------
File "/Users/stickman/github/be/libbe/util/subproc.py", line 113, in libbe.util.subproc.Pipe
Failed example:
    p.statuses
Expected:
    [1, 0]
Got:
    [0, 1]
----------------------------------------------------------------------
File "/Users/stickman/github/be/libbe/util/subproc.py", line 115, in libbe.util.subproc.Pipe
Failed example:
    p.stderrs # doctest: +ELLIPSIS
Expected:
    [...find: ...: Permission denied..., '']
Got:
    ['', '']


----------------------------------------------------------------------
Ran 298 tests in 12.076s

FAILED (failures=8, errors=1)
make: *** [test] Error 9

_______________________________________________
Be-devel mailing list
Be-devel <at> bugseverywhere.org
http://void.printf.net/cgi-bin/mailman/listinfo/be-devel
_______________________________________________
Be-devel mailing list
Be-devel <at> bugseverywhere.org
http://void.printf.net/cgi-bin/mailman/listinfo/be-devel

Gmane