Sadly, this is currently the "normal" situation. We've got a problem with
python sending its output to the wrong place; this needs to be fixed.  The
rest snow-ball from there.

--linas

On Tue, Aug 9, 2016 at 4:36 PM, Kefeh Collins <[email protected]>
wrote:

> Hello,
>      thanks that works, cogutil builds well, as well as atomspace but
> opencog wont build make test gives me these results
>
>
> *make test:*The following tests FAILED:
>       1 - AtomSpacePublisherModuleUTest (OTHER_FAULT)
>       8 - PythonModuleUTest (Failed)
>       9 - PyEvalUTest (OTHER_FAULT)
>      12 - ImportanceUpdatingAgentUTest (Failed)
> Errors while running CTest
> CMakeFiles/test.dir/build.make:57: recipe for target 'CMakeFiles/test'
> failed
> make[3]: *** [CMakeFiles/test] Error 8
> CMakeFiles/Makefile2:99: recipe for target 'CMakeFiles/test.dir/all' failed
> make[2]: *** [CMakeFiles/test.dir/all] Error 2
> CMakeFiles/Makefile2:106: recipe for target 'CMakeFiles/test.dir/rule'
> failed
> make[1]: *** [CMakeFiles/test.dir/rule] Error 2
> Makefile:197: recipe for target 'test' failed
> make: *** [test] Error 2
>
> Regards
> Kefeh
>
>
> On Fri, Aug 5, 2016 at 6:31 PM, Linas Vepstas <[email protected]>
> wrote:
>
>> OK fixed. Also `sudo make isntall` here like elsewhere.
>>
>> On Fri, Aug 5, 2016 at 9:56 AM, Kefeh Collins <[email protected]>
>> wrote:
>>
>>> Hello,
>>>       i just pulled cogutils and on building it i still encounter
>>> problems
>>>
>>> *cmake ..*:
>>> CMake Warning (dev) at CMakeLists.txt:273 (ADD_CUSTOM_TARGET):
>>>   Policy CMP0037 is not set: Target names should not be reserved and
>>> should
>>>   match a validity pattern.  Run "cmake --help-policy CMP0037" for policy
>>>   details.  Use the cmake_policy command to set the policy and suppress
>>> this
>>>   warning.
>>>
>>>   The target name "test" is reserved or not valid for certain CMake
>>> features,
>>>   such as generator expressions, and may result in undefined behavior.
>>> This warning is for project developers.  Use -Wno-dev to suppress it.
>>>
>>> *make install*:
>>>  -- Install configuration: "Release"
>>> -- Installing: /usr/local/include/opencog/util/ansi.h
>>> CMake Error at opencog/util/cmake_install.cmake:36 (file):
>>>   file INSTALL cannot copy file "/home/kefeh/cogutils/opencog/util/ansi.h"
>>> to
>>>   "/usr/local/include/opencog/util/ansi.h".
>>> Call Stack (most recent call first):
>>>   opencog/cmake_install.cmake:37 (include)
>>>   cmake_install.cmake:38 (include)
>>>
>>>
>>>
>>> Makefile:105: recipe for target 'install' failed
>>> make: *** [install] Error 1
>>>
>>> Regards
>>> Kefeh
>>>
>>>
>>> On Fri, Aug 5, 2016 at 12:13 AM, Linas Vepstas <[email protected]>
>>> wrote:
>>>
>>>> ah, yes. You will need to pull and buld a new version of cogutils to
>>>> fix this. This is a very recent change.  Typically, changes like this are
>>>> not made very often, but it was needed, in this case.
>>>>
>>>> Don't forget to rebuild the atomspace after doing cogutils
>>>>
>>>> --linas
>>>>
>>>> On Thu, Aug 4, 2016 at 5:54 PM, Kefeh Collins <[email protected]>
>>>> wrote:
>>>>
>>>>> Hello,
>>>>>       Thanks a lot, it worked using " sudo make install ", so i have
>>>>> successfully built atomspace.
>>>>>
>>>>> i have another issues building opencog
>>>>>
>>>>> *make* :
>>>>> /home/kefeh/opencog/opencog/cogserver/server/CogServer.cc: In member
>>>>> function ‘virtual void opencog::CogServer::enableNetworkServer()’:
>>>>> /home/kefeh/opencog/opencog/cogserver/server/CogServer.cc:173:77:
>>>>> error: no matching function for call to ‘opencog::Config::get_int(const
>>>>> char [12], int)’
>>>>>      _networkServer = new NetworkServer(config().get_int("SERVER_PORT",
>>>>> 17001));
>>>>>
>>>>> ^
>>>>> In file included from /home/kefeh/opencog/opencog/co
>>>>> gserver/server/CogServer.cc:38:0:
>>>>> /usr/local/include/opencog/util/Config.h:83:9: note: candidate: int
>>>>> opencog::Config::get_int(const string&) const
>>>>>      int get_int(const std::string &parameter_name) const;
>>>>>          ^
>>>>> /usr/local/include/opencog/util/Config.h:83:9: note:   candidate
>>>>> expects 1 argument, 2 provided
>>>>> /home/kefeh/opencog/opencog/cogserver/server/CogServer.cc: In member
>>>>> function ‘virtual void opencog::CogServer::serverLoop()’:
>>>>> /home/kefeh/opencog/opencog/cogserver/server/CogServer.cc:190:74:
>>>>> error: no matching function for call to ‘opencog::Config::get_int(const
>>>>> char [22], int)’
>>>>>   time_t cycle_duration = config().get_int("SERVER_CYCLE_DURATION",
>>>>> 100) * 1000;
>>>>>
>>>>> ^
>>>>> In file included from /home/kefeh/opencog/opencog/co
>>>>> gserver/server/CogServer.cc:38:0:
>>>>> /usr/local/include/opencog/util/Config.h:83:9: note: candidate: int
>>>>> opencog::Config::get_int(const string&) const
>>>>>      int get_int(const std::string &parameter_name) const;
>>>>>          ^
>>>>> /usr/local/include/opencog/util/Config.h:83:9: note:   candidate
>>>>> expects 1 argument, 2 provided
>>>>> /home/kefeh/opencog/opencog/cogserver/server/CogServer.cc: In member
>>>>> function ‘virtual void opencog::CogServer::loadSCMMod
>>>>> ules(std::vector<std::__cxx11::basic_string<char> >)’:
>>>>> /home/kefeh/opencog/opencog/cogserver/server/CogServer.cc:724:44:
>>>>> error: no matching function for call to ‘opencog::Config::get(const char
>>>>> [12], const char [1])’
>>>>>      tokenize(config().get("SCM_PRELOAD", ""),
>>>>> std::back_inserter(scm_modules),
>>>>>                                             ^
>>>>> In file included from /home/kefeh/opencog/opencog/co
>>>>> gserver/server/CogServer.cc:38:0:
>>>>> /usr/local/include/opencog/util/Config.h:78:24: note: candidate:
>>>>> const string& opencog::Config::get(const string&) const
>>>>>      const std::string& get(const std::string &parameter_name) const;
>>>>>                         ^
>>>>> /usr/local/include/opencog/util/Config.h:78:24: note:   candidate
>>>>> expects 1 argument, 2 provided
>>>>> opencog/cogserver/server/CMakeFiles/server.dir/build.make:158: recipe
>>>>> for target 'opencog/cogserver/server/CMak
>>>>> eFiles/server.dir/CogServer.cc.o' failed
>>>>> make[2]: *** [opencog/cogserver/server/CMak
>>>>> eFiles/server.dir/CogServer.cc.o] Error 1
>>>>> CMakeFiles/Makefile2:1090: recipe for target
>>>>> 'opencog/cogserver/server/CMakeFiles/server.dir/all' failed
>>>>> make[1]: *** [opencog/cogserver/server/CMakeFiles/server.dir/all]
>>>>> Error 2
>>>>> Makefile:149: recipe for target 'all' failed
>>>>> make: *** [all] Error 2
>>>>>
>>>>>
>>>>>
>>>>>
>>>>> thanks
>>>>> Kefeh
>>>>>
>>>>>
>>>>> On Thu, Aug 4, 2016 at 8:01 PM, Linas Vepstas <[email protected]>
>>>>> wrote:
>>>>>
>>>>>> install must be performed as root, e.g. by using sudo:  `sudo make
>>>>>> install`
>>>>>>
>>>>>> --linas
>>>>>>
>>>>>> On Thu, Aug 4, 2016 at 6:19 AM, Kefeh Collins <[email protected]
>>>>>> > wrote:
>>>>>>
>>>>>>> Hello,
>>>>>>>
>>>>>>>        thank you, i had a problem with my merge which i have
>>>>>>> resolved, the cmake warnings are fewer now
>>>>>>>
>>>>>>> *cmake .. *:
>>>>>>>
>>>>>>> CMake Warning at tests/persist/sql/odbc/CMakeLists.txt:67 (MESSAGE):
>>>>>>>   /usr/bin/psql: psql: FATAL: Peer authentication failed for user
>>>>>>>   "opencog_tester"
>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>> CMake Warning at tests/persist/sql/odbc/CMakeLists.txt:82 (MESSAGE):
>>>>>>>   Postgres database not configured for unit tests! See the README!
>>>>>>>
>>>>>>>
>>>>>>> CMake Warning at tests/persist/sql/postgres/CMakeLists.txt:67
>>>>>>> (MESSAGE):
>>>>>>>   /usr/bin/psql: psql: FATAL: Peer authentication failed for user
>>>>>>>   "opencog_tester"
>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>> CMake Warning at tests/persist/sql/postgres/CMakeLists.txt:82
>>>>>>> (MESSAGE):
>>>>>>>   Postgres database not configured for unit tests! See the README!
>>>>>>>
>>>>>>>
>>>>>>> *make install:*
>>>>>>>
>>>>>>> -- Install configuration: "Release"
>>>>>>> -- Up-to-date: /usr/local/include/opencog/atoms/NumberNode.h
>>>>>>> CMake Error at opencog/atoms/cmake_install.cmake:36 (file):
>>>>>>>   file INSTALL cannot set permissions on
>>>>>>>   "/usr/local/include/opencog/atoms/NumberNode.h"
>>>>>>> Call Stack (most recent call first):
>>>>>>>   opencog/cmake_install.cmake:37 (include)
>>>>>>>   cmake_install.cmake:38 (include)
>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>> Makefile:105: recipe for target 'install' failed
>>>>>>> make: *** [install] Error 1
>>>>>>>
>>>>>>>
>>>>>>> On Tue, Jul 26, 2016 at 3:29 PM, Kefeh <[email protected]>
>>>>>>> wrote:
>>>>>>>
>>>>>>>> Hello,
>>>>>>>>         i have been trying t build Opencog and on running the cmake
>>>>>>>> .. i ran across some warnings and errors.
>>>>>>>>
>>>>>>>> Please see https://drive.google.com/open?
>>>>>>>> id=0B1EsgPC1GsI5ODBGNDhUaXJmbDQ.
>>>>>>>>
>>>>>>>> Regards,
>>>>>>>> Kefeh
>>>>>>>>
>>>>>>>> --
>>>>>>>> You received this message because you are subscribed to a topic in
>>>>>>>> the Google Groups "opencog" group.
>>>>>>>> To unsubscribe from this topic, visit
>>>>>>>> https://groups.google.com/d/topic/opencog/Xkj7Zxjj8cg/unsubscribe.
>>>>>>>> To unsubscribe from this group and all its topics, send an email to
>>>>>>>> [email protected].
>>>>>>>> To post to this group, send email to [email protected].
>>>>>>>> Visit this group at https://groups.google.com/group/opencog.
>>>>>>>> To view this discussion on the web visit
>>>>>>>> https://groups.google.com/d/msgid/opencog/f120344d-8da3-453f
>>>>>>>> -8212-65ca2aa2f902%40googlegroups.com
>>>>>>>> <https://groups.google.com/d/msgid/opencog/f120344d-8da3-453f-8212-65ca2aa2f902%40googlegroups.com?utm_medium=email&utm_source=footer>
>>>>>>>> .
>>>>>>>> For more options, visit https://groups.google.com/d/optout.
>>>>>>>>
>>>>>>>
>>>>>>> --
>>>>>>> You received this message because you are subscribed to the Google
>>>>>>> Groups "opencog" group.
>>>>>>> To unsubscribe from this group and stop receiving emails from it,
>>>>>>> send an email to [email protected].
>>>>>>> To post to this group, send email to [email protected].
>>>>>>> Visit this group at https://groups.google.com/group/opencog.
>>>>>>> To view this discussion on the web visit
>>>>>>> https://groups.google.com/d/msgid/opencog/CAN9z%2BMq0sYtXhAV
>>>>>>> -anyO7i%2BpWhQk%2BtEd3jW1DS%2B1hT5T9poQQA%40mail.gmail.com
>>>>>>> <https://groups.google.com/d/msgid/opencog/CAN9z%2BMq0sYtXhAV-anyO7i%2BpWhQk%2BtEd3jW1DS%2B1hT5T9poQQA%40mail.gmail.com?utm_medium=email&utm_source=footer>
>>>>>>> .
>>>>>>>
>>>>>>> For more options, visit https://groups.google.com/d/optout.
>>>>>>>
>>>>>>
>>>>>> --
>>>>>> You received this message because you are subscribed to a topic in
>>>>>> the Google Groups "opencog" group.
>>>>>> To unsubscribe from this topic, visit https://groups.google.com/d/to
>>>>>> pic/opencog/Xkj7Zxjj8cg/unsubscribe.
>>>>>> To unsubscribe from this group and all its topics, send an email to
>>>>>> [email protected].
>>>>>> To post to this group, send email to [email protected].
>>>>>> Visit this group at https://groups.google.com/group/opencog.
>>>>>> To view this discussion on the web visit
>>>>>> https://groups.google.com/d/msgid/opencog/CAHrUA35BVJY95T22g
>>>>>> qNu%3DsW4xh6ytSFbEm%2BaNfu6MES-3j3NWg%40mail.gmail.com
>>>>>> <https://groups.google.com/d/msgid/opencog/CAHrUA35BVJY95T22gqNu%3DsW4xh6ytSFbEm%2BaNfu6MES-3j3NWg%40mail.gmail.com?utm_medium=email&utm_source=footer>
>>>>>> .
>>>>>>
>>>>>> For more options, visit https://groups.google.com/d/optout.
>>>>>>
>>>>>
>>>>> --
>>>>> You received this message because you are subscribed to the Google
>>>>> Groups "opencog" group.
>>>>> To unsubscribe from this group and stop receiving emails from it, send
>>>>> an email to [email protected].
>>>>> To post to this group, send email to [email protected].
>>>>> Visit this group at https://groups.google.com/group/opencog.
>>>>> To view this discussion on the web visit
>>>>> https://groups.google.com/d/msgid/opencog/CAN9z%2BMrwkDyXN_%
>>>>> 3DRRpz%3D9ve%3DfMCdZk1R-x6vwg2mcox%3D%2B9Fwyg%40mail.gmail.com
>>>>> <https://groups.google.com/d/msgid/opencog/CAN9z%2BMrwkDyXN_%3DRRpz%3D9ve%3DfMCdZk1R-x6vwg2mcox%3D%2B9Fwyg%40mail.gmail.com?utm_medium=email&utm_source=footer>
>>>>> .
>>>>>
>>>>> For more options, visit https://groups.google.com/d/optout.
>>>>>
>>>>
>>>> --
>>>> You received this message because you are subscribed to a topic in the
>>>> Google Groups "opencog" group.
>>>> To unsubscribe from this topic, visit https://groups.google.com/d/to
>>>> pic/opencog/Xkj7Zxjj8cg/unsubscribe.
>>>> To unsubscribe from this group and all its topics, send an email to
>>>> [email protected].
>>>> To post to this group, send email to [email protected].
>>>> Visit this group at https://groups.google.com/group/opencog.
>>>> To view this discussion on the web visit https://groups.google.com/d/ms
>>>> gid/opencog/CAHrUA34kdQrKEfodifi4vvngdyKcR0cu9n-LMF%2B4qzn%2
>>>> BJPJSwQ%40mail.gmail.com
>>>> <https://groups.google.com/d/msgid/opencog/CAHrUA34kdQrKEfodifi4vvngdyKcR0cu9n-LMF%2B4qzn%2BJPJSwQ%40mail.gmail.com?utm_medium=email&utm_source=footer>
>>>> .
>>>>
>>>> For more options, visit https://groups.google.com/d/optout.
>>>>
>>>
>>> --
>>> You received this message because you are subscribed to the Google
>>> Groups "opencog" group.
>>> To unsubscribe from this group and stop receiving emails from it, send
>>> an email to [email protected].
>>> To post to this group, send email to [email protected].
>>> Visit this group at https://groups.google.com/group/opencog.
>>> To view this discussion on the web visit https://groups.google.com/d/ms
>>> gid/opencog/CAN9z%2BMpiUKy%2B8wD%3DzJ9WQ4ceK%2B8t4x_RXN5hCrv
>>> R_p5PKt1Spw%40mail.gmail.com
>>> <https://groups.google.com/d/msgid/opencog/CAN9z%2BMpiUKy%2B8wD%3DzJ9WQ4ceK%2B8t4x_RXN5hCrvR_p5PKt1Spw%40mail.gmail.com?utm_medium=email&utm_source=footer>
>>> .
>>>
>>> For more options, visit https://groups.google.com/d/optout.
>>>
>>
>> --
>> You received this message because you are subscribed to a topic in the
>> Google Groups "opencog" group.
>> To unsubscribe from this topic, visit https://groups.google.com/d/to
>> pic/opencog/Xkj7Zxjj8cg/unsubscribe.
>> To unsubscribe from this group and all its topics, send an email to
>> [email protected].
>> To post to this group, send email to [email protected].
>> Visit this group at https://groups.google.com/group/opencog.
>> To view this discussion on the web visit https://groups.google.com/d/ms
>> gid/opencog/CAHrUA34tf6fNtuyZUT_Ck2x-FpwhwaeVUc6VXCqoTTdWWMw
>> cng%40mail.gmail.com
>> <https://groups.google.com/d/msgid/opencog/CAHrUA34tf6fNtuyZUT_Ck2x-FpwhwaeVUc6VXCqoTTdWWMwcng%40mail.gmail.com?utm_medium=email&utm_source=footer>
>> .
>>
>> For more options, visit https://groups.google.com/d/optout.
>>
>
> --
> You received this message because you are subscribed to the Google Groups
> "opencog" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to [email protected].
> To post to this group, send email to [email protected].
> Visit this group at https://groups.google.com/group/opencog.
> To view this discussion on the web visit https://groups.google.com/d/
> msgid/opencog/CAN9z%2BMpiLqFbPAN%3DDKbUWMUtME_V9r55FJNK7P7jOM8obRNCQQ%
> 40mail.gmail.com
> <https://groups.google.com/d/msgid/opencog/CAN9z%2BMpiLqFbPAN%3DDKbUWMUtME_V9r55FJNK7P7jOM8obRNCQQ%40mail.gmail.com?utm_medium=email&utm_source=footer>
> .
>
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups 
"opencog" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at https://groups.google.com/group/opencog.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/opencog/CAHrUA34RGYyZsmTK8bo-B1cqo3Qo%2BVXHvV7We0rPYW5WvE9_Kg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to