You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@mesos.apache.org by "West, William" <ww...@ucsd.edu> on 2013/04/05 20:37:28 UTC

Make check error

I am encountering this error when running 'make check':

F0405 11:28:20.534353 30580 process.cpp:1346] Failed to initialize, gethostbyname2:

Can you tell me what to do to resolve this error?

Thanks,

Bill West

Re: Make check error

Posted by Benjamin Mahler <be...@gmail.com>.
Is there anything unique about the network setup on this machine?

Looks like the code in process.cpp uses the old gethostbyname family of
functions that were deprecated in POSIX.1-2008. I opened this to track:
https://github.com/libprocess/libprocess/issues/8

"POSIX.1-2001 specifies gethostbyname(), gethostbyaddr(), sethostent(),
endhostent(), gethostent(), and h_errno; gethostbyname(), gethostbyaddr(),
and h_errno are marked obsolescent in that standard. POSIX.1-2008 removes
the specifications of gethostbyname(), gethostbyaddr(), and h_errno,
recommending the use of getaddrinfo(3) and getnameinfo(3) instead."

In order to see the error, you'll have to apply the fix below to
process.cpp:

  // Lookup hostname if missing ip or if ip is 127.0.0.1 in case we
  // actually have a valid external ip address. Note that we need only
  // one ip address, so that other processes can send and receive and
  // don't get confused as to whom they are sending to.
  if (__ip__ == 0 || __ip__ == 2130706433) {
    char hostname[512];

    if (gethostname(hostname, sizeof(hostname)) < 0) {
      PLOG(FATAL) << "Ffailed to initialize, gethostname";
    }

    // Lookup IP address of local hostname.
    hostent* he;

    if ((he = gethostbyname2(hostname, AF_INET)) == NULL) {
*// BEFORE*
*      PLOG(FATAL) << "Failed to initialize, gethostbyname2";*
*// FIXED (but still obsolete!)*
*      LOG(FATAL) << "**Failed to initialize, gethostbyname2: "
<< hstrerror(**h_errno)**;*
    }

    __ip__ = *((uint32_t *) he->h_addr_list[0]);
  }



On Sun, Apr 7, 2013 at 7:15 PM, West, William <ww...@ucsd.edu> wrote:

> Benjamin,
>
> Here is the output:
>
> Uname -v = #1 SMP Tue Feb 5 14:33:39 CST 2013
>
> Make Check output:
>
> [wwest@101/udp mesos]$ sudo make check
> Making check in .
> make[1]: Entering directory `/srv/mesos'
> make[1]: Nothing to be done for `check-am'.
> make[1]: Leaving directory `/srv/mesos'
> Making check in third_party
> make[1]: Entering directory `/srv/mesos/third_party'
> make  check-recursive
> make[2]: Entering directory `/srv/mesos/third_party'
> Making check in libprocess
> make[3]: Entering directory `/srv/mesos/third_party/libprocess'
> Making check in third_party
> make[4]: Entering directory `/srv/mesos/third_party/libprocess/third_party'
> make  check-recursive
> make[5]: Entering directory `/srv/mesos/third_party/libprocess/third_party'
> Making check in stout
> make[6]: Entering directory
> `/srv/mesos/third_party/libprocess/third_party/stout'
> make[6]: Nothing to be done for `check'.
> make[6]: Leaving directory
> `/srv/mesos/third_party/libprocess/third_party/stout'
> make[6]: Entering directory `/srv/mesos/third_party/libprocess/third_party'
> make  libgmock.la stout-tests
> make[7]: Entering directory `/srv/mesos/third_party/libprocess/third_party'
> make[7]: `libgmock.la' is up to date.
> make[7]: `stout-tests' is up to date.
> make[7]: Leaving directory `/srv/mesos/third_party/libprocess/third_party'
> make  check-TESTS
> make[7]: Entering directory `/srv/mesos/third_party/libprocess/third_party'
> [==========] Running 47 tests from 12 test cases.
> [----------] Global test environment set-up.
> [----------] 1 test from UUIDTest
> [ RUN      ] UUIDTest.test
> [       OK ] UUIDTest.test (1 ms)
> [----------] 1 test from UUIDTest (1 ms total)
>
> [----------] 21 tests from StringsTest
> [ RUN      ] StringsTest.Format
> [       OK ] StringsTest.Format (0 ms)
> [ RUN      ] StringsTest.Remove
> [       OK ] StringsTest.Remove (0 ms)
> [ RUN      ] StringsTest.Replace
> [       OK ] StringsTest.Replace (0 ms)
> [ RUN      ] StringsTest.Trim
> [       OK ] StringsTest.Trim (0 ms)
> [ RUN      ] StringsTest.Tokenize
> [       OK ] StringsTest.Tokenize (0 ms)
> [ RUN      ] StringsTest.TokenizeStringWithDelimsAtStart
> [       OK ] StringsTest.TokenizeStringWithDelimsAtStart (0 ms)
> [ RUN      ] StringsTest.TokenizeStringWithDelimsAtEnd
> [       OK ] StringsTest.TokenizeStringWithDelimsAtEnd (0 ms)
> [ RUN      ] StringsTest.TokenizeStringWithDelimsAtStartAndEnd
> [       OK ] StringsTest.TokenizeStringWithDelimsAtStartAndEnd (0 ms)
> [ RUN      ] StringsTest.TokenizeWithMultipleDelims
> [       OK ] StringsTest.TokenizeWithMultipleDelims (0 ms)
> [ RUN      ] StringsTest.TokenizeEmptyString
> [       OK ] StringsTest.TokenizeEmptyString (0 ms)
> [ RUN      ] StringsTest.TokenizeDelimOnlyString
> [       OK ] StringsTest.TokenizeDelimOnlyString (0 ms)
> [ RUN      ] StringsTest.SplitEmptyString
> [       OK ] StringsTest.SplitEmptyString (0 ms)
> [ RUN      ] StringsTest.SplitDelimOnlyString
> [       OK ] StringsTest.SplitDelimOnlyString (0 ms)
> [ RUN      ] StringsTest.Split
> [       OK ] StringsTest.Split (0 ms)
> [ RUN      ] StringsTest.SplitStringWithDelimsAtStart
> [       OK ] StringsTest.SplitStringWithDelimsAtStart (0 ms)
> [ RUN      ] StringsTest.SplitStringWithDelimsAtEnd
> [       OK ] StringsTest.SplitStringWithDelimsAtEnd (0 ms)
> [ RUN      ] StringsTest.SplitStringWithDelimsAtStartAndEnd
> [       OK ] StringsTest.SplitStringWithDelimsAtStartAndEnd (0 ms)
> [ RUN      ] StringsTest.SplitWithMultipleDelims
> [       OK ] StringsTest.SplitWithMultipleDelims (0 ms)
> [ RUN      ] StringsTest.Pairs
> [       OK ] StringsTest.Pairs (0 ms)
> [ RUN      ] StringsTest.StartsWith
> [       OK ] StringsTest.StartsWith (0 ms)
> [ RUN      ] StringsTest.Contains
> [       OK ] StringsTest.Contains (0 ms)
> [----------] 21 tests from StringsTest (0 ms total)
>
> [----------] 8 tests from OsTest
> [ RUN      ] OsTest.rmdir
> [       OK ] OsTest.rmdir (1 ms)
> [ RUN      ] OsTest.nonblock
> [       OK ] OsTest.nonblock (0 ms)
> [ RUN      ] OsTest.touch
> [       OK ] OsTest.touch (1 ms)
> [ RUN      ] OsTest.readWriteString
> [       OK ] OsTest.readWriteString (1 ms)
> [ RUN      ] OsTest.find
> [       OK ] OsTest.find (1 ms)
> [ RUN      ] OsTest.uname
> [       OK ] OsTest.uname (0 ms)
> [ RUN      ] OsTest.sysname
> [       OK ] OsTest.sysname (0 ms)
> [ RUN      ] OsTest.release
> [       OK ] OsTest.release (0 ms)
> [----------] 8 tests from OsTest (4 ms total)
>
> [----------] 1 test from NoneTest
> [ RUN      ] NoneTest.Test
> [       OK ] NoneTest.Test (0 ms)
> [----------] 1 test from NoneTest (0 ms total)
>
> [----------] 5 tests from MultimapTest/0, where TypeParam =
> Multimap<std::string, unsigned short>
> [ RUN      ] MultimapTest/0.Put
> [       OK ] MultimapTest/0.Put (1 ms)
> [ RUN      ] MultimapTest/0.Remove
> [       OK ] MultimapTest/0.Remove (0 ms)
> [ RUN      ] MultimapTest/0.Size
> [       OK ] MultimapTest/0.Size (0 ms)
> [ RUN      ] MultimapTest/0.Iterator
> [       OK ] MultimapTest/0.Iterator (0 ms)
> [ RUN      ] MultimapTest/0.Foreach
> [       OK ] MultimapTest/0.Foreach (0 ms)
> [----------] 5 tests from MultimapTest/0 (1 ms total)
>
> [----------] 5 tests from MultimapTest/1, where TypeParam =
> multihashmap<std::string, unsigned short>
> [ RUN      ] MultimapTest/1.Put
> [       OK ] MultimapTest/1.Put (0 ms)
> [ RUN      ] MultimapTest/1.Remove
> [       OK ] MultimapTest/1.Remove (0 ms)
> [ RUN      ] MultimapTest/1.Size
> [       OK ] MultimapTest/1.Size (0 ms)
> [ RUN      ] MultimapTest/1.Iterator
> [       OK ] MultimapTest/1.Iterator (0 ms)
> [ RUN      ] MultimapTest/1.Foreach
> [       OK ] MultimapTest/1.Foreach (0 ms)
> [----------] 5 tests from MultimapTest/1 (0 ms total)
>
> [----------] 1 test from JsonTest
> [ RUN      ] JsonTest.BinaryData
> [       OK ] JsonTest.BinaryData (0 ms)
> [----------] 1 test from JsonTest (0 ms total)
>
> [----------] 1 test from HashsetTest
> [ RUN      ] HashsetTest.Insert
> [       OK ] HashsetTest.Insert (0 ms)
> [----------] 1 test from HashsetTest (0 ms total)
>
> [----------] 1 test from GzipTest
> [ RUN      ] GzipTest.CompressDecompressString
> [       OK ] GzipTest.CompressDecompressString (104 ms)
> [----------] 1 test from GzipTest (104 ms total)
>
> [----------] 1 test from ErrorTest
> [ RUN      ] ErrorTest.Test
> [       OK ] ErrorTest.Test (0 ms)
> [----------] 1 test from ErrorTest (0 ms total)
>
> [----------] 1 test from DurationTest
> [ RUN      ] DurationTest.Test
> [       OK ] DurationTest.Test (0 ms)
> [----------] 1 test from DurationTest (0 ms total)
>
> [----------] 1 test from Stout
> [ RUN      ] Stout.Bytes
> [       OK ] Stout.Bytes (0 ms)
> [----------] 1 test from Stout (0 ms total)
>
> [----------] Global test environment tear-down
> [==========] 47 tests from 12 test cases ran. (110 ms total)
> [  PASSED  ] 47 tests.
> PASS: stout-tests
> =============
> 1 test passed
> =============
> make[7]: Leaving directory `/srv/mesos/third_party/libprocess/third_party'
> make[6]: Leaving directory `/srv/mesos/third_party/libprocess/third_party'
> make[5]: Leaving directory `/srv/mesos/third_party/libprocess/third_party'
> make[4]: Leaving directory `/srv/mesos/third_party/libprocess/third_party'
> Making check in .
> make[4]: Entering directory `/srv/mesos/third_party/libprocess'
> make  tests
> make[5]: Entering directory `/srv/mesos/third_party/libprocess'
> make[5]: `tests' is up to date.
> make[5]: Leaving directory `/srv/mesos/third_party/libprocess'
> make  check-TESTS
> make[5]: Entering directory `/srv/mesos/third_party/libprocess'
> WARNING: Logging before InitGoogleLogging() is written to STDERR
> F0407 19:10:19.194068 30657 process.cpp:1346] Failed to initialize,
> gethostbyname2: Success [0]
> *** Check failure stack trace: ***
> /bin/sh: line 5: 30657 Aborted                 ${dir}$tst
> FAIL: tests
> ==================
> 1 of 1 test failed
> ==================
> make[5]: *** [check-TESTS] Error 1
> make[5]: Leaving directory `/srv/mesos/third_party/libprocess'
> make[4]: *** [check-am] Error 2
> make[4]: Leaving directory `/srv/mesos/third_party/libprocess'
> make[3]: *** [check-recursive] Error 1
> make[3]: Leaving directory `/srv/mesos/third_party/libprocess'
> make[2]: *** [check-recursive] Error 1
> make[2]: Leaving directory `/srv/mesos/third_party'
> make[1]: *** [check] Error 2
> make[1]: Leaving directory `/srv/mesos/third_party'
> make: *** [check-recursive] Error 1
>
>
> Output from lib process check:
>
> WARNING: Logging before InitGoogleLogging() is written to STDERR
> F0407 19:06:07.423969 30581 process.cpp:1346] Failed to initialize,
> gethostbyname2: Success [0]
> *** Check failure stack trace: ***
>
> Thanks,
>
> Bill West
>
>
>
> On 4/7/13 6:36 PM, "Benjamin Mahler" <be...@gmail.com> wrote:
>
> >What is the output from 'uname -v'?
> >Can you provide the full output of make check?
> >
> >Also, it sounds like this is happening during the libprocess tests? If so,
> >can you run the tests in verbose mode and provide that output as well?
> >
> >GLOG_v=3 ./third_party/libprocess/tests --verbose
> >
> >Otherwise, if it's during the mesos tests:
> >
> >./third_party/libprocess/bin/mesos-tests.sh --verbose
> >
> >Thanks!
> >
> >
> >On Sun, Apr 7, 2013 at 11:35 AM, West, William <ww...@ucsd.edu> wrote:
> >
> >> Benjamin,
> >>
> >> Here is the version you requested
> >>
> >> OS = Linux 101/udp 2.6.32-279.22.1.el6.x86_64
> >> Mesos = 0.13.0
> >>
> >> Thanks,
> >>
> >> Bill West
> >>
> >>
> >> On 4/6/13 5:36 PM, "Benjamin Mahler" <bm...@twitter.com> wrote:
> >>
> >> >What OS / version of mesos?
> >> >
> >> >
> >> >On Fri, Apr 5, 2013 at 11:37 AM, West, William <ww...@ucsd.edu> wrote:
> >> >
> >> >> I am encountering this error when running 'make check':
> >> >>
> >> >> F0405 11:28:20.534353 30580 process.cpp:1346] Failed to initialize,
> >> >> gethostbyname2:
> >> >>
> >> >> Can you tell me what to do to resolve this error?
> >> >>
> >> >> Thanks,
> >> >>
> >> >> Bill West
> >> >>
> >>
> >>
>
>

Re: Make check error

Posted by "West, William" <ww...@ucsd.edu>.
Benjamin,

Here is the output:

Uname -v = #1 SMP Tue Feb 5 14:33:39 CST 2013

Make Check output:

[wwest@101/udp mesos]$ sudo make check
Making check in .
make[1]: Entering directory `/srv/mesos'
make[1]: Nothing to be done for `check-am'.
make[1]: Leaving directory `/srv/mesos'
Making check in third_party
make[1]: Entering directory `/srv/mesos/third_party'
make  check-recursive
make[2]: Entering directory `/srv/mesos/third_party'
Making check in libprocess
make[3]: Entering directory `/srv/mesos/third_party/libprocess'
Making check in third_party
make[4]: Entering directory `/srv/mesos/third_party/libprocess/third_party'
make  check-recursive
make[5]: Entering directory `/srv/mesos/third_party/libprocess/third_party'
Making check in stout
make[6]: Entering directory
`/srv/mesos/third_party/libprocess/third_party/stout'
make[6]: Nothing to be done for `check'.
make[6]: Leaving directory
`/srv/mesos/third_party/libprocess/third_party/stout'
make[6]: Entering directory `/srv/mesos/third_party/libprocess/third_party'
make  libgmock.la stout-tests
make[7]: Entering directory `/srv/mesos/third_party/libprocess/third_party'
make[7]: `libgmock.la' is up to date.
make[7]: `stout-tests' is up to date.
make[7]: Leaving directory `/srv/mesos/third_party/libprocess/third_party'
make  check-TESTS
make[7]: Entering directory `/srv/mesos/third_party/libprocess/third_party'
[==========] Running 47 tests from 12 test cases.
[----------] Global test environment set-up.
[----------] 1 test from UUIDTest
[ RUN      ] UUIDTest.test
[       OK ] UUIDTest.test (1 ms)
[----------] 1 test from UUIDTest (1 ms total)

[----------] 21 tests from StringsTest
[ RUN      ] StringsTest.Format
[       OK ] StringsTest.Format (0 ms)
[ RUN      ] StringsTest.Remove
[       OK ] StringsTest.Remove (0 ms)
[ RUN      ] StringsTest.Replace
[       OK ] StringsTest.Replace (0 ms)
[ RUN      ] StringsTest.Trim
[       OK ] StringsTest.Trim (0 ms)
[ RUN      ] StringsTest.Tokenize
[       OK ] StringsTest.Tokenize (0 ms)
[ RUN      ] StringsTest.TokenizeStringWithDelimsAtStart
[       OK ] StringsTest.TokenizeStringWithDelimsAtStart (0 ms)
[ RUN      ] StringsTest.TokenizeStringWithDelimsAtEnd
[       OK ] StringsTest.TokenizeStringWithDelimsAtEnd (0 ms)
[ RUN      ] StringsTest.TokenizeStringWithDelimsAtStartAndEnd
[       OK ] StringsTest.TokenizeStringWithDelimsAtStartAndEnd (0 ms)
[ RUN      ] StringsTest.TokenizeWithMultipleDelims
[       OK ] StringsTest.TokenizeWithMultipleDelims (0 ms)
[ RUN      ] StringsTest.TokenizeEmptyString
[       OK ] StringsTest.TokenizeEmptyString (0 ms)
[ RUN      ] StringsTest.TokenizeDelimOnlyString
[       OK ] StringsTest.TokenizeDelimOnlyString (0 ms)
[ RUN      ] StringsTest.SplitEmptyString
[       OK ] StringsTest.SplitEmptyString (0 ms)
[ RUN      ] StringsTest.SplitDelimOnlyString
[       OK ] StringsTest.SplitDelimOnlyString (0 ms)
[ RUN      ] StringsTest.Split
[       OK ] StringsTest.Split (0 ms)
[ RUN      ] StringsTest.SplitStringWithDelimsAtStart
[       OK ] StringsTest.SplitStringWithDelimsAtStart (0 ms)
[ RUN      ] StringsTest.SplitStringWithDelimsAtEnd
[       OK ] StringsTest.SplitStringWithDelimsAtEnd (0 ms)
[ RUN      ] StringsTest.SplitStringWithDelimsAtStartAndEnd
[       OK ] StringsTest.SplitStringWithDelimsAtStartAndEnd (0 ms)
[ RUN      ] StringsTest.SplitWithMultipleDelims
[       OK ] StringsTest.SplitWithMultipleDelims (0 ms)
[ RUN      ] StringsTest.Pairs
[       OK ] StringsTest.Pairs (0 ms)
[ RUN      ] StringsTest.StartsWith
[       OK ] StringsTest.StartsWith (0 ms)
[ RUN      ] StringsTest.Contains
[       OK ] StringsTest.Contains (0 ms)
[----------] 21 tests from StringsTest (0 ms total)

[----------] 8 tests from OsTest
[ RUN      ] OsTest.rmdir
[       OK ] OsTest.rmdir (1 ms)
[ RUN      ] OsTest.nonblock
[       OK ] OsTest.nonblock (0 ms)
[ RUN      ] OsTest.touch
[       OK ] OsTest.touch (1 ms)
[ RUN      ] OsTest.readWriteString
[       OK ] OsTest.readWriteString (1 ms)
[ RUN      ] OsTest.find
[       OK ] OsTest.find (1 ms)
[ RUN      ] OsTest.uname
[       OK ] OsTest.uname (0 ms)
[ RUN      ] OsTest.sysname
[       OK ] OsTest.sysname (0 ms)
[ RUN      ] OsTest.release
[       OK ] OsTest.release (0 ms)
[----------] 8 tests from OsTest (4 ms total)

[----------] 1 test from NoneTest
[ RUN      ] NoneTest.Test
[       OK ] NoneTest.Test (0 ms)
[----------] 1 test from NoneTest (0 ms total)

[----------] 5 tests from MultimapTest/0, where TypeParam =
Multimap<std::string, unsigned short>
[ RUN      ] MultimapTest/0.Put
[       OK ] MultimapTest/0.Put (1 ms)
[ RUN      ] MultimapTest/0.Remove
[       OK ] MultimapTest/0.Remove (0 ms)
[ RUN      ] MultimapTest/0.Size
[       OK ] MultimapTest/0.Size (0 ms)
[ RUN      ] MultimapTest/0.Iterator
[       OK ] MultimapTest/0.Iterator (0 ms)
[ RUN      ] MultimapTest/0.Foreach
[       OK ] MultimapTest/0.Foreach (0 ms)
[----------] 5 tests from MultimapTest/0 (1 ms total)

[----------] 5 tests from MultimapTest/1, where TypeParam =
multihashmap<std::string, unsigned short>
[ RUN      ] MultimapTest/1.Put
[       OK ] MultimapTest/1.Put (0 ms)
[ RUN      ] MultimapTest/1.Remove
[       OK ] MultimapTest/1.Remove (0 ms)
[ RUN      ] MultimapTest/1.Size
[       OK ] MultimapTest/1.Size (0 ms)
[ RUN      ] MultimapTest/1.Iterator
[       OK ] MultimapTest/1.Iterator (0 ms)
[ RUN      ] MultimapTest/1.Foreach
[       OK ] MultimapTest/1.Foreach (0 ms)
[----------] 5 tests from MultimapTest/1 (0 ms total)

[----------] 1 test from JsonTest
[ RUN      ] JsonTest.BinaryData
[       OK ] JsonTest.BinaryData (0 ms)
[----------] 1 test from JsonTest (0 ms total)

[----------] 1 test from HashsetTest
[ RUN      ] HashsetTest.Insert
[       OK ] HashsetTest.Insert (0 ms)
[----------] 1 test from HashsetTest (0 ms total)

[----------] 1 test from GzipTest
[ RUN      ] GzipTest.CompressDecompressString
[       OK ] GzipTest.CompressDecompressString (104 ms)
[----------] 1 test from GzipTest (104 ms total)

[----------] 1 test from ErrorTest
[ RUN      ] ErrorTest.Test
[       OK ] ErrorTest.Test (0 ms)
[----------] 1 test from ErrorTest (0 ms total)

[----------] 1 test from DurationTest
[ RUN      ] DurationTest.Test
[       OK ] DurationTest.Test (0 ms)
[----------] 1 test from DurationTest (0 ms total)

[----------] 1 test from Stout
[ RUN      ] Stout.Bytes
[       OK ] Stout.Bytes (0 ms)
[----------] 1 test from Stout (0 ms total)

[----------] Global test environment tear-down
[==========] 47 tests from 12 test cases ran. (110 ms total)
[  PASSED  ] 47 tests.
PASS: stout-tests
=============
1 test passed
=============
make[7]: Leaving directory `/srv/mesos/third_party/libprocess/third_party'
make[6]: Leaving directory `/srv/mesos/third_party/libprocess/third_party'
make[5]: Leaving directory `/srv/mesos/third_party/libprocess/third_party'
make[4]: Leaving directory `/srv/mesos/third_party/libprocess/third_party'
Making check in .
make[4]: Entering directory `/srv/mesos/third_party/libprocess'
make  tests
make[5]: Entering directory `/srv/mesos/third_party/libprocess'
make[5]: `tests' is up to date.
make[5]: Leaving directory `/srv/mesos/third_party/libprocess'
make  check-TESTS
make[5]: Entering directory `/srv/mesos/third_party/libprocess'
WARNING: Logging before InitGoogleLogging() is written to STDERR
F0407 19:10:19.194068 30657 process.cpp:1346] Failed to initialize,
gethostbyname2: Success [0]
*** Check failure stack trace: ***
/bin/sh: line 5: 30657 Aborted                 ${dir}$tst
FAIL: tests
==================
1 of 1 test failed
==================
make[5]: *** [check-TESTS] Error 1
make[5]: Leaving directory `/srv/mesos/third_party/libprocess'
make[4]: *** [check-am] Error 2
make[4]: Leaving directory `/srv/mesos/third_party/libprocess'
make[3]: *** [check-recursive] Error 1
make[3]: Leaving directory `/srv/mesos/third_party/libprocess'
make[2]: *** [check-recursive] Error 1
make[2]: Leaving directory `/srv/mesos/third_party'
make[1]: *** [check] Error 2
make[1]: Leaving directory `/srv/mesos/third_party'
make: *** [check-recursive] Error 1


Output from lib process check:

WARNING: Logging before InitGoogleLogging() is written to STDERR
F0407 19:06:07.423969 30581 process.cpp:1346] Failed to initialize,
gethostbyname2: Success [0]
*** Check failure stack trace: ***

Thanks,

Bill West



On 4/7/13 6:36 PM, "Benjamin Mahler" <be...@gmail.com> wrote:

>What is the output from 'uname -v'?
>Can you provide the full output of make check?
>
>Also, it sounds like this is happening during the libprocess tests? If so,
>can you run the tests in verbose mode and provide that output as well?
>
>GLOG_v=3 ./third_party/libprocess/tests --verbose
>
>Otherwise, if it's during the mesos tests:
>
>./third_party/libprocess/bin/mesos-tests.sh --verbose
>
>Thanks!
>
>
>On Sun, Apr 7, 2013 at 11:35 AM, West, William <ww...@ucsd.edu> wrote:
>
>> Benjamin,
>>
>> Here is the version you requested
>>
>> OS = Linux 101/udp 2.6.32-279.22.1.el6.x86_64
>> Mesos = 0.13.0
>>
>> Thanks,
>>
>> Bill West
>>
>>
>> On 4/6/13 5:36 PM, "Benjamin Mahler" <bm...@twitter.com> wrote:
>>
>> >What OS / version of mesos?
>> >
>> >
>> >On Fri, Apr 5, 2013 at 11:37 AM, West, William <ww...@ucsd.edu> wrote:
>> >
>> >> I am encountering this error when running 'make check':
>> >>
>> >> F0405 11:28:20.534353 30580 process.cpp:1346] Failed to initialize,
>> >> gethostbyname2:
>> >>
>> >> Can you tell me what to do to resolve this error?
>> >>
>> >> Thanks,
>> >>
>> >> Bill West
>> >>
>>
>>


Re: Make check error

Posted by Benjamin Mahler <be...@gmail.com>.
What is the output from 'uname -v'?
Can you provide the full output of make check?

Also, it sounds like this is happening during the libprocess tests? If so,
can you run the tests in verbose mode and provide that output as well?

GLOG_v=3 ./third_party/libprocess/tests --verbose

Otherwise, if it's during the mesos tests:

./third_party/libprocess/bin/mesos-tests.sh --verbose

Thanks!


On Sun, Apr 7, 2013 at 11:35 AM, West, William <ww...@ucsd.edu> wrote:

> Benjamin,
>
> Here is the version you requested
>
> OS = Linux 101/udp 2.6.32-279.22.1.el6.x86_64
> Mesos = 0.13.0
>
> Thanks,
>
> Bill West
>
>
> On 4/6/13 5:36 PM, "Benjamin Mahler" <bm...@twitter.com> wrote:
>
> >What OS / version of mesos?
> >
> >
> >On Fri, Apr 5, 2013 at 11:37 AM, West, William <ww...@ucsd.edu> wrote:
> >
> >> I am encountering this error when running 'make check':
> >>
> >> F0405 11:28:20.534353 30580 process.cpp:1346] Failed to initialize,
> >> gethostbyname2:
> >>
> >> Can you tell me what to do to resolve this error?
> >>
> >> Thanks,
> >>
> >> Bill West
> >>
>
>

Re: Make check error

Posted by "West, William" <ww...@ucsd.edu>.
Benjamin,

Here is the version you requested

OS = Linux 101/udp 2.6.32-279.22.1.el6.x86_64
Mesos = 0.13.0

Thanks,

Bill West


On 4/6/13 5:36 PM, "Benjamin Mahler" <bm...@twitter.com> wrote:

>What OS / version of mesos?
>
>
>On Fri, Apr 5, 2013 at 11:37 AM, West, William <ww...@ucsd.edu> wrote:
>
>> I am encountering this error when running 'make check':
>>
>> F0405 11:28:20.534353 30580 process.cpp:1346] Failed to initialize,
>> gethostbyname2:
>>
>> Can you tell me what to do to resolve this error?
>>
>> Thanks,
>>
>> Bill West
>>


Re: Make check error

Posted by Benjamin Mahler <bm...@twitter.com>.
What OS / version of mesos?


On Fri, Apr 5, 2013 at 11:37 AM, West, William <ww...@ucsd.edu> wrote:

> I am encountering this error when running 'make check':
>
> F0405 11:28:20.534353 30580 process.cpp:1346] Failed to initialize,
> gethostbyname2:
>
> Can you tell me what to do to resolve this error?
>
> Thanks,
>
> Bill West
>