c9s/Vimana

make test failures

Closed this issue · 1 comments

http://gist.github.com/307459
Failed 8/12 test programs. 44/72 subtests failed.

c9s commented

Hi ujihisa,

before make test, you need to install the dependencies by sudo make command.
to install dependencies. that needs permission to install those modules.

because make test depends on make , so make test calls make command without permission, which causes dependency installation failed. so that you can't run a test.

actually , we usually run following commands:

   $ sudo make 
   $ make test
   $ sudo make install

you can also ignore the make test command, it's ok.