Here's a thought Till: If you're thinking of a C++ implementation for testing is there a way that you could re-use the MesosContainerizer? I'm imagining you could have a persistent process running the MesosContainerizer and then write a shim external containerizer program that does the deserialization/serialization between the ExternalContainerizer and an External[MesosContainerizer]. This would re-use tested code and save a lot of reimplementation.
Thoughts? ian On May 2, 2014, at 3:45 PM, Till Toenshoff <[email protected]> wrote: > Thanks Vinod for disabling this for now. > > Due to this persisting issue but also due to the fact that a Python-based > test is not really the best choice as it turned out, I will be switching over > to a C++ implementation for the ExternalContainerizer counterpart - I would > like to refer to it as the ExternalContainerizer Program or ECP. > > Sorry for all the inconveniences this has caused and please stay tuned for an > updated ECP (test_containerizer.py replacement). > > On May 1, 2014, at 10:00 PM, Vinod Kone <[email protected]> wrote: > >> commit ef6423cdc0085a66d895482d4d041e2135072c5c >> >> Author: Vinod Kone <[email protected]> >> >> Date: Thu May 1 12:59:06 2014 -0700 >> >> >> Temporarily disabled ExternalContainerizerTest.Launch due to >> >> MESOS-1257. >> >> >> On Thu, May 1, 2014 at 12:36 PM, Vinod Kone <[email protected]> wrote: >> >>> Looks like the fix still needs some time. I'll disable the test on the >>> master in the meanwhile to unblock others. >>> >>> >>> On Wed, Apr 30, 2014 at 3:58 PM, Vinod Kone <[email protected]> wrote: >>> >>>> If you need time to fix it and don't want to feel pressured to submit a >>>> fix we could disable the test on the master in the interim. I'll let you >>>> make the call. >>>> >>>> >>>> On Wed, Apr 30, 2014 at 3:47 PM, Benjamin Hindman <[email protected] >>>>> wrote: >>>> >>>>> Thanks for the update Till! >>>>> >>>>> >>>>> On Wed, Apr 30, 2014 at 3:32 PM, Till Toenshoff <[email protected]>wrote: >>>>> >>>>>> Just a quick update; I am still on this. While my initial RR proposal >>>>>> would work, it still was a bit of a hack as Ian correctly noted, hence I >>>>>> decided to redo it. >>>>>> >>>>>> Now however I got into some weird quirks of Python's Subprocess.Popen / >>>>>> Subprocess.wait / os.kill, that have kept me scratching my head for a >>>>>> while. So even though I think I got a perfect plan to solve this in a non >>>>>> hacky way, that way currently does not work as expected, hence this >>>>>> delay. >>>>>> Sorry for that - will keep you updated! >>>>>> >>>>>> >>>>>> >>>>>> >>>>>> On Apr 30, 2014, at 6:00 PM, Till Toenshoff <[email protected]> wrote: >>>>>> >>>>>>> I think that is the same issue. Triggering cause fix is at >>>>>> https://reviews.apache.org/r/20893/ >>>>>>> >>>>>>> On Apr 30, 2014, at 5:58 PM, Benjamin Mahler <[email protected]> >>>>>> wrote: >>>>>>> >>>>>>>> Is this being tracked? I've found another issue perhaps: >>>>>>>> >>>>>>>> [ RUN ] ExternalContainerizerTest.Launch >>>>>>>> ../../src/tests/cluster.hpp:462: Failure >>>>>>>> (wait).failure(): External containerizer failed (status: 1) >>>>>>>> F0430 15:44:34.437077 13360 logging.cpp:55] RAW: Pure virtual method >>>>>> called >>>>>>>> @ 0x7f7cac08243d google::LogMessage::Fail() >>>>>>>> @ 0x7f7cac089a01 google::RawLog__() >>>>>>>> @ 0x7f7cabc2dd27 __cxa_pure_virtual >>>>>>>> @ 0x7f51cc >>>>>>>> mesos::internal::tests::Cluster::Slaves::shutdown() >>>>>>>> @ 0xb97c76 >>>>>>>> mesos::internal::tests::MesosTest::ShutdownSlaves() >>>>>>>> @ 0xb97c3a >>>>>> mesos::internal::tests::MesosTest::Shutdown() >>>>>>>> @ 0xb97e59 >>>>>> mesos::internal::tests::MesosTest::TearDown() >>>>>>>> @ 0xd6e99e >>>>>>>> testing::internal::HandleSehExceptionsInMethodIfSupported<>() >>>>>>>> @ 0xd6a564 >>>>>>>> testing::internal::HandleExceptionsInMethodIfSupported<>() >>>>>>>> @ 0xd58b5e testing::Test::Run() >>>>>>>> @ 0xd5923a testing::TestInfo::Run() >>>>>>>> @ 0xd597cc testing::TestCase::Run() >>>>>>>> @ 0xd5e594 >>>>>> testing::internal::UnitTestImpl::RunAllTests() >>>>>>>> @ 0xd6f80f >>>>>>>> testing::internal::HandleSehExceptionsInMethodIfSupported<>() >>>>>>>> @ 0xd6b27f >>>>>>>> testing::internal::HandleExceptionsInMethodIfSupported<>() >>>>>>>> @ 0xd5d426 testing::UnitTest::Run() >>>>>>>> @ 0xb37712 main >>>>>>>> @ 0x7f7ca85679c4 __libc_start_main >>>>>>>> @ 0x7d84f9 (unknown) >>>>>>>> >>>>>>>> >>>>>>>> >>>>>>>> >>>>>>>> On Tue, Apr 29, 2014 at 6:41 PM, Till Toenshoff <[email protected]> >>>>>> wrote: >>>>>>>> >>>>>>>>> We are still having an issue here; >>>>>>>>> >>>>>>>>> [ RUN ] ExternalContainerizerTest.Launch >>>>>>>>> ../../src/tests/cluster.hpp:462: Failure >>>>>>>>> (wait).failure(): External containerizer failed (status: 1) >>>>>>>>> Process 93985 stopped >>>>>>>>> * thread #1: tid = 0xa87a7c, 0x0000000100093f1c >>>>>>>>> >>>>>> mesos-tests`mesos::internal::tests::Cluster::Slaves::shutdown(this=0x0000000108506f38) >>>>>>>>> + 2124 at cluster.hpp:450, queue = 'com.apple.main-thread', stop >>>>>> reason = >>>>>>>>> EXC_BAD_ACCESS (code=EXC_I386_GPFLT) >>>>>>>>> frame #0: 0x0000000100093f1c >>>>>>>>> >>>>>> mesos-tests`mesos::internal::tests::Cluster::Slaves::shutdown(this=0x0000000108506f38) >>>>>>>>> + 2124 at cluster.hpp:450 >>>>>>>>> 447 copy) { >>>>>>>>> 448 >>>>>>>>> 449 process::Future<hashset<ContainerID> > containers = >>>>>>>>> -> 450 slave.containerizer->containers(); >>>>>>>>> 451 AWAIT_READY(containers); >>>>>>>>> 452 >>>>>>>>> 453 foreach (const ContainerID& containerId, >>>>>> containers.get()) { >>>>>>>>> >>>>>>>>> On Apr 30, 2014, at 2:36 AM, Till Toenshoff <[email protected]> >>>>>> wrote: >>>>>>>>> >>>>>>>>>> I am also having a peek⦠>>>>>>>>>> >>>>>>>>>> On Apr 30, 2014, at 2:32 AM, Ian Downes <[email protected]> >>>>>> wrote: >>>>>>>>>> >>>>>>>>>>> This looks more like something I introduced. I'm looking into it. >>>>>>>>>>> >>>>>>>>>>> On Apr 29, 2014, at 5:26 PM, Vinod Kone <[email protected]> >>>>>> wrote: >>>>>>>>>>> >>>>>>>>>>>> Is someone looking into this? Till? >>>>>>>>>>>> >>>>>>>>>>>> >>>>>>>>>>>> On Tue, Apr 29, 2014 at 3:38 PM, Apache Jenkins Server < >>>>>>>>> [email protected]> wrote: >>>>>>>>>>>> See < >>>>>>>>> >>>>>> https://builds.apache.org/job/Mesos-Trunk-Ubuntu-Build-In-Src-Set-JAVA_HOME/1821/changes >>>>>>>>>> >>>>>>>>>>>> >>>>>>>>>>>> Changes: >>>>>>>>>>>> >>>>>>>>>>>> [idownes] Rename CgroupsLauncher to LinuxLauncher. >>>>>>>>>>>> >>>>>>>>>>>> [idownes] Collect Isolator::cleanup() before completing container >>>>>>>>> destroy. >>>>>>>>>>>> >>>>>>>>>>>> [idownes] Improve test Cluster::shutdown to destroy containers. >>>>>>>>>>>> >>>>>>>>>>>> [vinod] Added version to webui. >>>>>>>>>>>> >>>>>>>>>>>> [yujie.jay] Removed ExternalContainerizer.Launch test for >>>>>> disabled >>>>>>>>> Python builds. >>>>>>>>>>>> >>>>>>>>>>>> [idownes] Modified Isolator API for prepare commands. >>>>>>>>>>>> >>>>>>>>>>>> [yan] Revised Group to drop queued events from a previous >>>>>> ZooKeeper >>>>>>>>> instance (and ZK session). >>>>>>>>>>>> >>>>>>>>>>>> ------------------------------------------ >>>>>>>>>>>> [...truncated 3952 lines...] >>>>>>>>>>>> [ OK ] Process.event (0 ms) >>>>>>>>>>>> [ RUN ] Process.handlers >>>>>>>>>>>> [ OK ] Process.handlers (0 ms) >>>>>>>>>>>> [ RUN ] Process.defer1 >>>>>>>>>>>> [ OK ] Process.defer1 (2 ms) >>>>>>>>>>>> [ RUN ] Process.pid >>>>>>>>>>>> [ OK ] Process.pid (0 ms) >>>>>>>>>>>> [ RUN ] Process.collect >>>>>>>>>>>> [ OK ] Process.collect (0 ms) >>>>>>>>>>>> [ RUN ] Process.associate >>>>>>>>>>>> [ OK ] Process.associate (0 ms) >>>>>>>>>>>> [ RUN ] Process.listener >>>>>>>>>>>> [ OK ] Process.listener (0 ms) >>>>>>>>>>>> [ RUN ] Process.action >>>>>>>>>>>> [ OK ] Process.action (0 ms) >>>>>>>>>>>> [ RUN ] Process.exited >>>>>>>>>>>> [ OK ] Process.exited (0 ms) >>>>>>>>>>>> [ RUN ] Process.then >>>>>>>>>>>> [ OK ] Process.then (0 ms) >>>>>>>>>>>> [ RUN ] Process.expect >>>>>>>>>>>> [ OK ] Process.expect (1 ms) >>>>>>>>>>>> [ RUN ] Process.delay >>>>>>>>>>>> [ OK ] Process.delay (0 ms) >>>>>>>>>>>> [ RUN ] Process.defer2 >>>>>>>>>>>> [ OK ] Process.defer2 (1 ms) >>>>>>>>>>>> [ RUN ] Process.await3 >>>>>>>>>>>> [ OK ] Process.await3 (0 ms) >>>>>>>>>>>> [ RUN ] Process.future >>>>>>>>>>>> [ OK ] Process.future (0 ms) >>>>>>>>>>>> [ RUN ] Process.executor >>>>>>>>>>>> [ OK ] Process.executor (4 ms) >>>>>>>>>>>> [ RUN ] Process.chain >>>>>>>>>>>> [ OK ] Process.chain (0 ms) >>>>>>>>>>>> [ RUN ] Process.select >>>>>>>>>>>> [ OK ] Process.select (0 ms) >>>>>>>>>>>> [ RUN ] Process.defer3 >>>>>>>>>>>> [ OK ] Process.defer3 (0 ms) >>>>>>>>>>>> [----------] 39 tests from Process (94 ms total) >>>>>>>>>>>> >>>>>>>>>>>> [----------] 5 tests from IO >>>>>>>>>>>> [ RUN ] IO.BufferedRead >>>>>>>>>>>> [ OK ] IO.BufferedRead (3 ms) >>>>>>>>>>>> [ RUN ] IO.splice >>>>>>>>>>>> [ OK ] IO.splice (38 ms) >>>>>>>>>>>> [ RUN ] IO.Poll >>>>>>>>>>>> [ OK ] IO.Poll (0 ms) >>>>>>>>>>>> [ RUN ] IO.Write >>>>>>>>>>>> [ OK ] IO.Write (0 ms) >>>>>>>>>>>> [ RUN ] IO.Read >>>>>>>>>>>> [ OK ] IO.Read (1 ms) >>>>>>>>>>>> [----------] 5 tests from IO (42 ms total) >>>>>>>>>>>> >>>>>>>>>>>> [----------] 4 tests from Shared >>>>>>>>>>>> [ RUN ] Shared.Null >>>>>>>>>>>> [ OK ] Shared.Null (0 ms) >>>>>>>>>>>> [ RUN ] Shared.Own >>>>>>>>>>>> [ OK ] Shared.Own (0 ms) >>>>>>>>>>>> [ RUN ] Shared.ConstAccess >>>>>>>>>>>> [ OK ] Shared.ConstAccess (0 ms) >>>>>>>>>>>> [ RUN ] Shared.Reset >>>>>>>>>>>> [ OK ] Shared.Reset (0 ms) >>>>>>>>>>>> [----------] 4 tests from Shared (0 ms total) >>>>>>>>>>>> >>>>>>>>>>>> [----------] 2 tests from Encoder >>>>>>>>>>>> [ RUN ] Encoder.AcceptableEncodings >>>>>>>>>>>> [ OK ] Encoder.AcceptableEncodings (109 ms) >>>>>>>>>>>> [ RUN ] Encoder.Response >>>>>>>>>>>> [ OK ] Encoder.Response (0 ms) >>>>>>>>>>>> [----------] 2 tests from Encoder (110 ms total) >>>>>>>>>>>> >>>>>>>>>>>> [----------] 10 tests from Subprocess >>>>>>>>>>>> [ RUN ] Subprocess.status >>>>>>>>>>>> [ OK ] Subprocess.status (337 ms) >>>>>>>>>>>> [ RUN ] Subprocess.setup >>>>>>>>>>>> [ OK ] Subprocess.setup (36 ms) >>>>>>>>>>>> [ RUN ] Subprocess.environment >>>>>>>>>>>> [ OK ] Subprocess.environment (67 ms) >>>>>>>>>>>> [ RUN ] Subprocess.setupStatus >>>>>>>>>>>> [ OK ] Subprocess.setupStatus (62 ms) >>>>>>>>>>>> [ RUN ] Subprocess.environmentOverride >>>>>>>>>>>> [ OK ] Subprocess.environmentOverride (31 ms) >>>>>>>>>>>> [ RUN ] Subprocess.environmentWithSpacesAndQuotes >>>>>>>>>>>> [ OK ] Subprocess.environmentWithSpacesAndQuotes (31 ms) >>>>>>>>>>>> [ RUN ] Subprocess.splice >>>>>>>>>>>> [ OK ] Subprocess.splice (35 ms) >>>>>>>>>>>> [ RUN ] Subprocess.environmentWithSpaces >>>>>>>>>>>> [ OK ] Subprocess.environmentWithSpaces (32 ms) >>>>>>>>>>>> [ RUN ] Subprocess.input >>>>>>>>>>>> [ OK ] Subprocess.input (32 ms) >>>>>>>>>>>> [ RUN ] Subprocess.output >>>>>>>>>>>> [ OK ] Subprocess.output (62 ms) >>>>>>>>>>>> [----------] 10 tests from Subprocess (727 ms total) >>>>>>>>>>>> >>>>>>>>>>>> [----------] 3 tests from TimeTest >>>>>>>>>>>> [ RUN ] TimeTest.Output >>>>>>>>>>>> [ OK ] TimeTest.Output (0 ms) >>>>>>>>>>>> [ RUN ] TimeTest.Now >>>>>>>>>>>> [ OK ] TimeTest.Now (0 ms) >>>>>>>>>>>> [ RUN ] TimeTest.Arithmetic >>>>>>>>>>>> [ OK ] TimeTest.Arithmetic (0 ms) >>>>>>>>>>>> [----------] 3 tests from TimeTest (0 ms total) >>>>>>>>>>>> >>>>>>>>>>>> [----------] 3 tests from Mutex >>>>>>>>>>>> [ RUN ] Mutex.lock >>>>>>>>>>>> [ OK ] Mutex.lock (0 ms) >>>>>>>>>>>> [ RUN ] Mutex.block >>>>>>>>>>>> [ OK ] Mutex.block (0 ms) >>>>>>>>>>>> [ RUN ] Mutex.queue >>>>>>>>>>>> [ OK ] Mutex.queue (0 ms) >>>>>>>>>>>> [----------] 3 tests from Mutex (0 ms total) >>>>>>>>>>>> >>>>>>>>>>>> [----------] 3 tests from Decoder >>>>>>>>>>>> [ RUN ] Decoder.Request >>>>>>>>>>>> [ OK ] Decoder.Request (0 ms) >>>>>>>>>>>> [ RUN ] Decoder.Response >>>>>>>>>>>> [ OK ] Decoder.Response (0 ms) >>>>>>>>>>>> [ RUN ] Decoder.RequestHeaderContinuation >>>>>>>>>>>> [ OK ] Decoder.RequestHeaderContinuation (0 ms) >>>>>>>>>>>> [----------] 3 tests from Decoder (1 ms total) >>>>>>>>>>>> >>>>>>>>>>>> [----------] 4 tests from Sequence >>>>>>>>>>>> [ RUN ] Sequence.Serialize >>>>>>>>>>>> [ OK ] Sequence.Serialize (10 ms) >>>>>>>>>>>> [ RUN ] Sequence.DiscardOne >>>>>>>>>>>> [ OK ] Sequence.DiscardOne (11 ms) >>>>>>>>>>>> [ RUN ] Sequence.DiscardAll >>>>>>>>>>>> [ OK ] Sequence.DiscardAll (11 ms) >>>>>>>>>>>> [ RUN ] Sequence.Random >>>>>>>>>>>> [ OK ] Sequence.Random (47 ms) >>>>>>>>>>>> [----------] 4 tests from Sequence (79 ms total) >>>>>>>>>>>> >>>>>>>>>>>> [----------] 3 tests from Owned >>>>>>>>>>>> [ RUN ] Owned.Null >>>>>>>>>>>> [ OK ] Owned.Null (0 ms) >>>>>>>>>>>> [ RUN ] Owned.Share >>>>>>>>>>>> [ OK ] Owned.Share (0 ms) >>>>>>>>>>>> [ RUN ] Owned.Access >>>>>>>>>>>> [ OK ] Owned.Access (0 ms) >>>>>>>>>>>> [----------] 3 tests from Owned (0 ms total) >>>>>>>>>>>> >>>>>>>>>>>> [----------] 1 test from Future >>>>>>>>>>>> [ RUN ] Future.FromTry >>>>>>>>>>>> [ OK ] Future.FromTry (0 ms) >>>>>>>>>>>> [----------] 1 test from Future (0 ms total) >>>>>>>>>>>> >>>>>>>>>>>> [----------] 3 tests from Reap >>>>>>>>>>>> [ RUN ] Reap.TerminatedChildProcess >>>>>>>>>>>> [ OK ] Reap.TerminatedChildProcess (23 ms) >>>>>>>>>>>> [ RUN ] Reap.NonChildProcess >>>>>>>>>>>> [ OK ] Reap.NonChildProcess (42 ms) >>>>>>>>>>>> [ RUN ] Reap.ChildProcess >>>>>>>>>>>> [ OK ] Reap.ChildProcess (31 ms) >>>>>>>>>>>> [----------] 3 tests from Reap (97 ms total) >>>>>>>>>>>> >>>>>>>>>>>> [----------] 5 tests from HTTP >>>>>>>>>>>> [ RUN ] HTTP.Get >>>>>>>>>>>> I0429 22:33:54.016573 22882 process.cpp:3201] Handling HTTP >>>>>> event for >>>>>>>>> process '(43)' with path: '/(43)/get' >>>>>>>>>>>> I0429 22:33:54.017138 22886 process.cpp:1013] Socket closed while >>>>>>>>> receiving >>>>>>>>>>>> I0429 22:33:54.017629 22882 process.cpp:3201] Handling HTTP >>>>>> event for >>>>>>>>> process '(43)' with path: '/(43)/get' >>>>>>>>>>>> I0429 22:33:54.018033 22886 process.cpp:1013] Socket closed while >>>>>>>>> receiving >>>>>>>>>>>> [ OK ] HTTP.Get (7 ms) >>>>>>>>>>>> [ RUN ] HTTP.Post >>>>>>>>>>>> I0429 22:33:54.023071 22886 process.cpp:1013] Socket closed while >>>>>>>>> receiving >>>>>>>>>>>> I0429 22:33:54.023322 22881 process.cpp:3201] Handling HTTP >>>>>> event for >>>>>>>>> process '(44)' with path: '/(44)/post' >>>>>>>>>>>> I0429 22:33:54.023748 22886 process.cpp:1013] Socket closed while >>>>>>>>> receiving >>>>>>>>>>>> [ OK ] HTTP.Post (9 ms) >>>>>>>>>>>> [ RUN ] HTTP.Encode >>>>>>>>>>>> [ OK ] HTTP.Encode (0 ms) >>>>>>>>>>>> [ RUN ] HTTP.PathParse >>>>>>>>>>>> [ OK ] HTTP.PathParse (1 ms) >>>>>>>>>>>> [ RUN ] HTTP.Endpoints >>>>>>>>>>>> I0429 22:33:54.032269 22884 process.cpp:3201] Handling HTTP >>>>>> event for >>>>>>>>> process '(45)' with path: '/(45)/body' >>>>>>>>>>>> I0429 22:33:54.032500 22886 process.cpp:1011] Socket error while >>>>>>>>> receiving: Connection reset by peer >>>>>>>>>>>> I0429 22:33:54.032769 22883 process.cpp:3201] Handling HTTP >>>>>> event for >>>>>>>>> process '(45)' with path: '/(45)/pipe' >>>>>>>>>>>> I0429 22:33:54.032891 22884 process.cpp:1778] Starting "chunked" >>>>>>>>> streaming >>>>>>>>>>>> I0429 22:33:54.033326 22886 process.cpp:1013] Socket closed while >>>>>>>>> receiving >>>>>>>>>>>> [ OK ] HTTP.Endpoints (1 ms) >>>>>>>>>>>> [----------] 5 tests from HTTP (18 ms total) >>>>>>>>>>>> >>>>>>>>>>>> [----------] Global test environment tear-down >>>>>>>>>>>> [==========] 97 tests from 16 test cases ran. (1356 ms total) >>>>>>>>>>>> [ PASSED ] 97 tests. >>>>>>>>>>>> >>>>>>>>>>>> YOU HAVE 2 DISABLED TESTS >>>>>>>>>>>> >>>>>>>>>>>> make[6]: Leaving directory `< >>>>>>>>> >>>>>> https://builds.apache.org/job/Mesos-Trunk-Ubuntu-Build-In-Src-Set-JAVA_HOME/ws/mesos-0.19.0/_build/3rdparty/libprocess >>>>>>>>> '> >>>>>>>>>>>> make[5]: Leaving directory `< >>>>>>>>> >>>>>> https://builds.apache.org/job/Mesos-Trunk-Ubuntu-Build-In-Src-Set-JAVA_HOME/ws/mesos-0.19.0/_build/3rdparty/libprocess >>>>>>>>> '> >>>>>>>>>>>> make[4]: Leaving directory `< >>>>>>>>> >>>>>> https://builds.apache.org/job/Mesos-Trunk-Ubuntu-Build-In-Src-Set-JAVA_HOME/ws/mesos-0.19.0/_build/3rdparty/libprocess >>>>>>>>> '> >>>>>>>>>>>> make[4]: Entering directory `< >>>>>>>>> >>>>>> https://builds.apache.org/job/Mesos-Trunk-Ubuntu-Build-In-Src-Set-JAVA_HOME/ws/mesos-0.19.0/_build/3rdparty >>>>>>>>> '> >>>>>>>>>>>> make[4]: Nothing to be done for `check-am'. >>>>>>>>>>>> make[4]: Leaving directory `< >>>>>>>>> >>>>>> https://builds.apache.org/job/Mesos-Trunk-Ubuntu-Build-In-Src-Set-JAVA_HOME/ws/mesos-0.19.0/_build/3rdparty >>>>>>>>> '> >>>>>>>>>>>> make[3]: Leaving directory `< >>>>>>>>> >>>>>> https://builds.apache.org/job/Mesos-Trunk-Ubuntu-Build-In-Src-Set-JAVA_HOME/ws/mesos-0.19.0/_build/3rdparty >>>>>>>>> '> >>>>>>>>>>>> make[2]: Leaving directory `< >>>>>>>>> >>>>>> https://builds.apache.org/job/Mesos-Trunk-Ubuntu-Build-In-Src-Set-JAVA_HOME/ws/mesos-0.19.0/_build/3rdparty >>>>>>>>> '> >>>>>>>>>>>> Making check in src >>>>>>>>>>>> make[2]: Entering directory `< >>>>>>>>> >>>>>> https://builds.apache.org/job/Mesos-Trunk-Ubuntu-Build-In-Src-Set-JAVA_HOME/ws/mesos-0.19.0/_build/src >>>>>>>>> '> >>>>>>>>>>>> make check-am >>>>>>>>>>>> make[3]: Entering directory `< >>>>>>>>> >>>>>> https://builds.apache.org/job/Mesos-Trunk-Ubuntu-Build-In-Src-Set-JAVA_HOME/ws/mesos-0.19.0/_build/src >>>>>>>>> '> >>>>>>>>>>>> make test-framework test-executor long-lived-framework >>>>>>>>> long-lived-executor no-executor-framework balloon-framework >>>>>>>>> balloon-executor mesos-tests examples/python/test_framework.py >>>>>>>>> examples/python/test-framework examples/python/test_executor.py >>>>>>>>> examples/python/test-executor examples/python/test_containerizer.py >>>>>>>>> examples/python/test-containerizer \ >>>>>>>>>>>> tests/balloon_framework_test.sh >>>>>> tests/test_framework_test.sh >>>>>>>>> tests/no_executor_framework_test.sh tests/java_exception_test.sh >>>>>>>>> tests/java_framework_test.sh tests/java_log_test.sh >>>>>>>>> tests/python_framework_test.sh >>>>>>>>>>>> make[4]: Entering directory `< >>>>>>>>> >>>>>> https://builds.apache.org/job/Mesos-Trunk-Ubuntu-Build-In-Src-Set-JAVA_HOME/ws/mesos-0.19.0/_build/src >>>>>>>>> '> >>>>>>>>>>>> g++ -DPACKAGE_NAME=\"mesos\" -DPACKAGE_TARNAME=\"mesos\" >>>>>>>>> -DPACKAGE_VERSION=\"0.19.0\" -DPACKAGE_STRING=\"mesos\ 0.19.0\" >>>>>>>>> -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"mesos\" >>>>>>>>> -DVERSION=\"0.19.0\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 >>>>>>>>> -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 >>>>>> -DHAVE_MEMORY_H=1 >>>>>>>>> -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 >>>>>> -DHAVE_UNISTD_H=1 >>>>>>>>> -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DHAVE_PTHREAD=1 >>>>>> -DMESOS_HAS_JAVA=1 >>>>>>>>> -DHAVE_PYTHON=\"2.7\" -DMESOS_HAS_PYTHON=1 -DHAVE_LIBZ=1 >>>>>> -DHAVE_LIBCURL=1 >>>>>>>>> -DHAVE_LIBSASL2=1 -I. -I../../src -Wall -Werror -DLIBDIR=\"< >>>>>>>>> >>>>>> https://builds.apache.org/job/Mesos-Trunk-Ubuntu-Build-In-Src-Set-JAVA_HOME/ws/mesos-0.19.0/_inst/lib\ >>>>>> "> >>>>>>>>> -DPKGLIBEXECDIR=\"< >>>>>>>>> >>>>>> https://builds.apache.org/job/Mesos-Trunk-Ubuntu-Build-In-Src-Set-JAVA_HOME/ws/mesos-0.19.0/_inst/libexec/mesos\ >>>>>> "> >>>>>>>>> -DPKGDATADIR=\"< >>>>>>>>> >>>>>> https://builds.apache.org/job/Mesos-Trunk-Ubuntu-Build-In-Src-Set-JAVA_HOME/ws/mesos-0.19.0/_inst/share/mesos\ >>>>>> "> >>>>>>>>> -I../../include -I../../3rdparty/libprocess/include >>>>>>>>> -I../../3rdparty/libprocess/3rdparty/stout/include -I../include >>>>>>>>> -I../3rdparty/libprocess/3rdparty/boost-1.53.0 >>>>>>>>> -I../3rdparty/libprocess/3rdparty/protobuf-2.5.0/src >>>>>>>>> -I../3rdparty/libprocess/3rdparty/picojson-4f93734 >>>>>>>>> -I../3rdparty/libprocess/3rdparty/glog-0.3.3/src >>>>>>>>> -I../3rdparty/leveldb/include >>>>>> -I../3rdparty/zookeeper-3.4.5/src/c/include >>>>>>>>> -I../3rdparty/zookeeper-3.4.5/src/c/generated -pthread -g -g2 -O2 >>>>>>>>> -std=c++0x -MT examples/test_framework-test_framework.o -MD -MP -MF >>>>>>>>> examples/.deps/test_framework-test_framework.Tpo -c -o >>>>>>>>> examples/test_framework-test_framework.o `test -f >>>>>>>>> 'examples/test_framework.cpp' || echo >>>>>>>>> '../../src/'`examples/test_framework.cpp >>>>>>>>>>>> mv -f examples/.deps/test_framework-test_framework.Tpo >>>>>>>>> examples/.deps/test_framework-test_framework.Po >>>>>>>>>>>> /bin/bash ../libtool --tag=CXX --mode=link g++ -pthread -g -g2 >>>>>> -O2 >>>>>>>>> -std=c++0x -o test-framework >>>>>> examples/test_framework-test_framework.o >>>>>>>>> libmesos.la -lsasl2 -lcurl -lz -lrt >>>>>>>>>>>> libtool: link: g++ -pthread -g -g2 -O2 -std=c++0x -o >>>>>>>>> .libs/test-framework examples/test_framework-test_framework.o >>>>>>>>> ./.libs/libmesos.so -lsasl2 /usr/lib/x86_64-linux-gnu/libcurl.so >>>>>> -lz -lrt >>>>>>>>> -pthread -Wl,-rpath -Wl,< >>>>>>>>> >>>>>> https://builds.apache.org/job/Mesos-Trunk-Ubuntu-Build-In-Src-Set-JAVA_HOME/ws/mesos-0.19.0/_inst/lib >>>>>>>>>> >>>>>>>>>>>> g++ -DPACKAGE_NAME=\"mesos\" -DPACKAGE_TARNAME=\"mesos\" >>>>>>>>> -DPACKAGE_VERSION=\"0.19.0\" -DPACKAGE_STRING=\"mesos\ 0.19.0\" >>>>>>>>> -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"mesos\" >>>>>>>>> -DVERSION=\"0.19.0\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 >>>>>>>>> -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 >>>>>> -DHAVE_MEMORY_H=1 >>>>>>>>> -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 >>>>>> -DHAVE_UNISTD_H=1 >>>>>>>>> -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DHAVE_PTHREAD=1 >>>>>> -DMESOS_HAS_JAVA=1 >>>>>>>>> -DHAVE_PYTHON=\"2.7\" -DMESOS_HAS_PYTHON=1 -DHAVE_LIBZ=1 >>>>>> -DHAVE_LIBCURL=1 >>>>>>>>> -DHAVE_LIBSASL2=1 -I. -I../../src -Wall -Werror -DLIBDIR=\"< >>>>>>>>> >>>>>> https://builds.apache.org/job/Mesos-Trunk-Ubuntu-Build-In-Src-Set-JAVA_HOME/ws/mesos-0.19.0/_inst/lib\ >>>>>> "> >>>>>>>>> -DPKGLIBEXECDIR=\"< >>>>>>>>> >>>>>> https://builds.apache.org/job/Mesos-Trunk-Ubuntu-Build-In-Src-Set-JAVA_HOME/ws/mesos-0.19.0/_inst/libexec/mesos\ >>>>>> "> >>>>>>>>> -DPKGDATADIR=\"< >>>>>>>>> >>>>>> https://builds.apache.org/job/Mesos-Trunk-Ubuntu-Build-In-Src-Set-JAVA_HOME/ws/mesos-0.19.0/_inst/share/mesos\ >>>>>> "> >>>>>>>>> -I../../include -I../../3rdparty/libprocess/include >>>>>>>>> -I../../3rdparty/libprocess/3rdparty/stout/include -I../include >>>>>>>>> -I../3rdparty/libprocess/3rdparty/boost-1.53.0 >>>>>>>>> -I../3rdparty/libprocess/3rdparty/protobuf-2.5.0/src >>>>>>>>> -I../3rdparty/libprocess/3rdparty/picojson-4f93734 >>>>>>>>> -I../3rdparty/libprocess/3rdparty/glog-0.3.3/src >>>>>>>>> -I../3rdparty/leveldb/include >>>>>> -I../3rdparty/zookeeper-3.4.5/src/c/include >>>>>>>>> -I../3rdparty/zookeeper-3.4.5/src/c/generated -pthread -g -g2 -O2 >>>>>>>>> -std=c++0x -MT examples/test_executor-test_executor.o -MD -MP -MF >>>>>>>>> examples/.deps/test_executor-test_executor.Tpo -c -o >>>>>>>>> examples/test_executor-test_executor.o `test -f >>>>>>>>> 'examples/test_executor.cpp' || echo >>>>>> '../../src/'`examples/test_executor.cpp >>>>>>>>>>>> mv -f examples/.deps/test_executor-test_executor.Tpo >>>>>>>>> examples/.deps/test_executor-test_executor.Po >>>>>>>>>>>> /bin/bash ../libtool --tag=CXX --mode=link g++ -pthread -g -g2 >>>>>> -O2 >>>>>>>>> -std=c++0x -o test-executor examples/test_executor-test_executor.o >>>>>>>>> libmesos.la -lsasl2 -lcurl -lz -lrt >>>>>>>>>>>> libtool: link: g++ -pthread -g -g2 -O2 -std=c++0x -o >>>>>>>>> .libs/test-executor examples/test_executor-test_executor.o >>>>>>>>> ./.libs/libmesos.so -lsasl2 /usr/lib/x86_64-linux-gnu/libcurl.so >>>>>> -lz -lrt >>>>>>>>> -pthread -Wl,-rpath -Wl,< >>>>>>>>> >>>>>> https://builds.apache.org/job/Mesos-Trunk-Ubuntu-Build-In-Src-Set-JAVA_HOME/ws/mesos-0.19.0/_inst/lib >>>>>>>>>> >>>>>>>>>>>> g++ -DPACKAGE_NAME=\"mesos\" -DPACKAGE_TARNAME=\"mesos\" >>>>>>>>> -DPACKAGE_VERSION=\"0.19.0\" -DPACKAGE_STRING=\"mesos\ 0.19.0\" >>>>>>>>> -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"mesos\" >>>>>>>>> -DVERSION=\"0.19.0\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 >>>>>>>>> -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 >>>>>> -DHAVE_MEMORY_H=1 >>>>>>>>> -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 >>>>>> -DHAVE_UNISTD_H=1 >>>>>>>>> -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DHAVE_PTHREAD=1 >>>>>> -DMESOS_HAS_JAVA=1 >>>>>>>>> -DHAVE_PYTHON=\"2.7\" -DMESOS_HAS_PYTHON=1 -DHAVE_LIBZ=1 >>>>>> -DHAVE_LIBCURL=1 >>>>>>>>> -DHAVE_LIBSASL2=1 -I. -I../../src -Wall -Werror -DLIBDIR=\"< >>>>>>>>> >>>>>> https://builds.apache.org/job/Mesos-Trunk-Ubuntu-Build-In-Src-Set-JAVA_HOME/ws/mesos-0.19.0/_inst/lib\ >>>>>> "> >>>>>>>>> -DPKGLIBEXECDIR=\"< >>>>>>>>> >>>>>> https://builds.apache.org/job/Mesos-Trunk-Ubuntu-Build-In-Src-Set-JAVA_HOME/ws/mesos-0.19.0/_inst/libexec/mesos\ >>>>>> "> >>>>>>>>> -DPKGDATADIR=\"< >>>>>>>>> >>>>>> https://builds.apache.org/job/Mesos-Trunk-Ubuntu-Build-In-Src-Set-JAVA_HOME/ws/mesos-0.19.0/_inst/share/mesos\ >>>>>> "> >>>>>>>>> -I../../include -I../../3rdparty/libprocess/include >>>>>>>>> -I../../3rdparty/libprocess/3rdparty/stout/include -I../include >>>>>>>>> -I../3rdparty/libprocess/3rdparty/boost-1.53.0 >>>>>>>>> -I../3rdparty/libprocess/3rdparty/protobuf-2.5.0/src >>>>>>>>> -I../3rdparty/libprocess/3rdparty/picojson-4f93734 >>>>>>>>> -I../3rdparty/libprocess/3rdparty/glog-0.3.3/src >>>>>>>>> -I../3rdparty/leveldb/include >>>>>> -I../3rdparty/zookeeper-3.4.5/src/c/include >>>>>>>>> -I../3rdparty/zookeeper-3.4.5/src/c/generated -pthread -g -g2 -O2 >>>>>>>>> -std=c++0x -MT examples/long_lived_framework-long_lived_framework.o >>>>>> -MD -MP >>>>>>>>> -MF examples/.deps/long_lived_framework-long_lived_framework.Tpo -c >>>>>> -o >>>>>>>>> examples/long_lived_framework-long_lived_framework.o `test -f >>>>>>>>> 'examples/long_lived_framework.cpp' || echo >>>>>>>>> '../../src/'`examples/long_lived_framework.cpp >>>>>>>>>>>> mv -f >>>>>> examples/.deps/long_lived_framework-long_lived_framework.Tpo >>>>>>>>> examples/.deps/long_lived_framework-long_lived_framework.Po >>>>>>>>>>>> /bin/bash ../libtool --tag=CXX --mode=link g++ -pthread -g -g2 >>>>>> -O2 >>>>>>>>> -std=c++0x -o long-lived-framework >>>>>>>>> examples/long_lived_framework-long_lived_framework.o >>>>>>>>> libmesos.la-lsasl2 >>>>>>>>> -lcurl -lz -lrt >>>>>>>>>>>> libtool: link: g++ -pthread -g -g2 -O2 -std=c++0x -o >>>>>>>>> .libs/long-lived-framework >>>>>>>>> examples/long_lived_framework-long_lived_framework.o >>>>>> ./.libs/libmesos.so >>>>>>>>> -lsasl2 /usr/lib/x86_64-linux-gnu/libcurl.so -lz -lrt -pthread >>>>>> -Wl,-rpath >>>>>>>>> -Wl,< >>>>>>>>> >>>>>> https://builds.apache.org/job/Mesos-Trunk-Ubuntu-Build-In-Src-Set-JAVA_HOME/ws/mesos-0.19.0/_inst/lib >>>>>>>>>> >>>>>>>>>>>> g++ -DPACKAGE_NAME=\"mesos\" -DPACKAGE_TARNAME=\"mesos\" >>>>>>>>> -DPACKAGE_VERSION=\"0.19.0\" -DPACKAGE_STRING=\"mesos\ 0.19.0\" >>>>>>>>> -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"mesos\" >>>>>>>>> -DVERSION=\"0.19.0\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 >>>>>>>>> -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 >>>>>> -DHAVE_MEMORY_H=1 >>>>>>>>> -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 >>>>>> -DHAVE_UNISTD_H=1 >>>>>>>>> -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DHAVE_PTHREAD=1 >>>>>> -DMESOS_HAS_JAVA=1 >>>>>>>>> -DHAVE_PYTHON=\"2.7\" -DMESOS_HAS_PYTHON=1 -DHAVE_LIBZ=1 >>>>>> -DHAVE_LIBCURL=1 >>>>>>>>> -DHAVE_LIBSASL2=1 -I. -I../../src -Wall -Werror -DLIBDIR=\"< >>>>>>>>> >>>>>> https://builds.apache.org/job/Mesos-Trunk-Ubuntu-Build-In-Src-Set-JAVA_HOME/ws/mesos-0.19.0/_inst/lib\ >>>>>> "> >>>>>>>>> -DPKGLIBEXECDIR=\"< >>>>>>>>> >>>>>> https://builds.apache.org/job/Mesos-Trunk-Ubuntu-Build-In-Src-Set-JAVA_HOME/ws/mesos-0.19.0/_inst/libexec/mesos\ >>>>>> "> >>>>>>>>> -DPKGDATADIR=\"< >>>>>>>>> >>>>>> https://builds.apache.org/job/Mesos-Trunk-Ubuntu-Build-In-Src-Set-JAVA_HOME/ws/mesos-0.19.0/_inst/share/mesos\ >>>>>> "> >>>>>>>>> -I../../include -I../../3rdparty/libprocess/include >>>>>>>>> -I../../3rdparty/libprocess/3rdparty/stout/include -I../include >>>>>>>>> -I../3rdparty/libprocess/3rdparty/boost-1.53.0 >>>>>>>>> -I../3rdparty/libprocess/3rdparty/protobuf-2.5.0/src >>>>>>>>> -I../3rdparty/libprocess/3rdparty/picojson-4f93734 >>>>>>>>> -I../3rdparty/libprocess/3rdparty/glog-0.3.3/src >>>>>>>>> -I../3rdparty/leveldb/include >>>>>> -I../3rdparty/zookeeper-3.4.5/src/c/include >>>>>>>>> -I../3rdparty/zookeeper-3.4.5/src/c/generated -pthread -g -g2 -O2 >>>>>>>>> -std=c++0x -MT examples/long_lived_executor-long_lived_executor.o >>>>>> -MD -MP >>>>>>>>> -MF examples/.deps/long_lived_executor-long_lived_executor.Tpo -c -o >>>>>>>>> examples/long_lived_executor-long_lived_executor.o `test -f >>>>>>>>> 'examples/long_lived_executor.cpp' || echo >>>>>>>>> '../../src/'`examples/long_lived_executor.cpp >>>>>>>>>>>> mv -f examples/.deps/long_lived_executor-long_lived_executor.Tpo >>>>>>>>> examples/.deps/long_lived_executor-long_lived_executor.Po >>>>>>>>>>>> /bin/bash ../libtool --tag=CXX --mode=link g++ -pthread -g -g2 >>>>>> -O2 >>>>>>>>> -std=c++0x -o long-lived-executor >>>>>>>>> examples/long_lived_executor-long_lived_executor.o libmesos.la-lsasl2 >>>>>>>>> -lcurl -lz -lrt >>>>>>>>>>>> libtool: link: g++ -pthread -g -g2 -O2 -std=c++0x -o >>>>>>>>> .libs/long-lived-executor >>>>>>>>> examples/long_lived_executor-long_lived_executor.o >>>>>> ./.libs/libmesos.so >>>>>>>>> -lsasl2 /usr/lib/x86_64-linux-gnu/libcurl.so -lz -lrt -pthread >>>>>> -Wl,-rpath >>>>>>>>> -Wl,< >>>>>>>>> >>>>>> https://builds.apache.org/job/Mesos-Trunk-Ubuntu-Build-In-Src-Set-JAVA_HOME/ws/mesos-0.19.0/_inst/lib >>>>>>>>>> >>>>>>>>>>>> g++ -DPACKAGE_NAME=\"mesos\" -DPACKAGE_TARNAME=\"mesos\" >>>>>>>>> -DPACKAGE_VERSION=\"0.19.0\" -DPACKAGE_STRING=\"mesos\ 0.19.0\" >>>>>>>>> -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"mesos\" >>>>>>>>> -DVERSION=\"0.19.0\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 >>>>>>>>> -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 >>>>>> -DHAVE_MEMORY_H=1 >>>>>>>>> -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 >>>>>> -DHAVE_UNISTD_H=1 >>>>>>>>> -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DHAVE_PTHREAD=1 >>>>>> -DMESOS_HAS_JAVA=1 >>>>>>>>> -DHAVE_PYTHON=\"2.7\" -DMESOS_HAS_PYTHON=1 -DHAVE_LIBZ=1 >>>>>> -DHAVE_LIBCURL=1 >>>>>>>>> -DHAVE_LIBSASL2=1 -I. -I../../src -Wall -Werror -DLIBDIR=\"< >>>>>>>>> >>>>>> https://builds.apache.org/job/Mesos-Trunk-Ubuntu-Build-In-Src-Set-JAVA_HOME/ws/mesos-0.19.0/_inst/lib\ >>>>>> "> >>>>>>>>> -DPKGLIBEXECDIR=\"< >>>>>>>>> >>>>>> https://builds.apache.org/job/Mesos-Trunk-Ubuntu-Build-In-Src-Set-JAVA_HOME/ws/mesos-0.19.0/_inst/libexec/mesos\ >>>>>> "> >>>>>>>>> -DPKGDATADIR=\"< >>>>>>>>> >>>>>> https://builds.apache.org/job/Mesos-Trunk-Ubuntu-Build-In-Src-Set-JAVA_HOME/ws/mesos-0.19.0/_inst/share/mesos\ >>>>>> "> >>>>>>>>> -I../../include -I../../3rdparty/libprocess/include >>>>>>>>> -I../../3rdparty/libprocess/3rdparty/stout/include -I../include >>>>>>>>> -I../3rdparty/libprocess/3rdparty/boost-1.53.0 >>>>>>>>> -I../3rdparty/libprocess/3rdparty/protobuf-2.5.0/src >>>>>>>>> -I../3rdparty/libprocess/3rdparty/picojson-4f93734 >>>>>>>>> -I../3rdparty/libprocess/3rdparty/glog-0.3.3/src >>>>>>>>> -I../3rdparty/leveldb/include >>>>>> -I../3rdparty/zookeeper-3.4.5/src/c/include >>>>>>>>> -I../3rdparty/zookeeper-3.4.5/src/c/generated -pthread -g -g2 -O2 >>>>>>>>> -std=c++0x -MT >>>>>> examples/no_executor_framework-no_executor_framework.o -MD >>>>>>>>> -MP -MF >>>>>> examples/.deps/no_executor_framework-no_executor_framework.Tpo -c >>>>>>>>> -o examples/no_executor_framework-no_executor_framework.o `test -f >>>>>>>>> 'examples/no_executor_framework.cpp' || echo >>>>>>>>> '../../src/'`examples/no_executor_framework.cpp >>>>>>>>>>>> mv -f >>>>>> examples/.deps/no_executor_framework-no_executor_framework.Tpo >>>>>>>>> examples/.deps/no_executor_framework-no_executor_framework.Po >>>>>>>>>>>> /bin/bash ../libtool --tag=CXX --mode=link g++ -pthread -g -g2 >>>>>> -O2 >>>>>>>>> -std=c++0x -o no-executor-framework >>>>>>>>> examples/no_executor_framework-no_executor_framework.o >>>>>> libmesos.la-lsasl2 -lcurl -lz -lrt >>>>>>>>>>>> libtool: link: g++ -pthread -g -g2 -O2 -std=c++0x -o >>>>>>>>> .libs/no-executor-framework >>>>>>>>> examples/no_executor_framework-no_executor_framework.o >>>>>> ./.libs/libmesos.so >>>>>>>>> -lsasl2 /usr/lib/x86_64-linux-gnu/libcurl.so -lz -lrt -pthread >>>>>> -Wl,-rpath >>>>>>>>> -Wl,< >>>>>>>>> >>>>>> https://builds.apache.org/job/Mesos-Trunk-Ubuntu-Build-In-Src-Set-JAVA_HOME/ws/mesos-0.19.0/_inst/lib >>>>>>>>>> >>>>>>>>>>>> g++ -DPACKAGE_NAME=\"mesos\" -DPACKAGE_TARNAME=\"mesos\" >>>>>>>>> -DPACKAGE_VERSION=\"0.19.0\" -DPACKAGE_STRING=\"mesos\ 0.19.0\" >>>>>>>>> -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"mesos\" >>>>>>>>> -DVERSION=\"0.19.0\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 >>>>>>>>> -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 >>>>>> -DHAVE_MEMORY_H=1 >>>>>>>>> -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 >>>>>> -DHAVE_UNISTD_H=1 >>>>>>>>> -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DHAVE_PTHREAD=1 >>>>>> -DMESOS_HAS_JAVA=1 >>>>>>>>> -DHAVE_PYTHON=\"2.7\" -DMESOS_HAS_PYTHON=1 -DHAVE_LIBZ=1 >>>>>> -DHAVE_LIBCURL=1 >>>>>>>>> -DHAVE_LIBSASL2=1 -I. -I../../src -Wall -Werror -DLIBDIR=\"< >>>>>>>>> >>>>>> https://builds.apache.org/job/Mesos-Trunk-Ubuntu-Build-In-Src-Set-JAVA_HOME/ws/mesos-0.19.0/_inst/lib\ >>>>>> "> >>>>>>>>> -DPKGLIBEXECDIR=\"< >>>>>>>>> >>>>>> https://builds.apache.org/job/Mesos-Trunk-Ubuntu-Build-In-Src-Set-JAVA_HOME/ws/mesos-0.19.0/_inst/libexec/mesos\ >>>>>> "> >>>>>>>>> -DPKGDATADIR=\"< >>>>>>>>> >>>>>> https://builds.apache.org/job/Mesos-Trunk-Ubuntu-Build-In-Src-Set-JAVA_HOME/ws/mesos-0.19.0/_inst/share/mesos\ >>>>>> "> >>>>>>>>> -I../../include -I../../3rdparty/libprocess/include >>>>>>>>> -I../../3rdparty/libprocess/3rdparty/stout/include -I../include >>>>>>>>> -I../3rdparty/libprocess/3rdparty/boost-1.53.0 >>>>>>>>> -I../3rdparty/libprocess/3rdparty/protobuf-2.5.0/src >>>>>>>>> -I../3rdparty/libprocess/3rdparty/picojson-4f93734 >>>>>>>>> -I../3rdparty/libprocess/3rdparty/glog-0.3.3/src >>>>>>>>> -I../3rdparty/leveldb/include >>>>>> -I../3rdparty/zookeeper-3.4.5/src/c/include >>>>>>>>> -I../3rdparty/zookeeper-3.4.5/src/c/generated -pthread -g -g2 -O2 >>>>>>>>> -std=c++0x -MT examples/balloon_framework-balloon_framework.o -MD >>>>>> -MP -MF >>>>>>>>> examples/.deps/balloon_framework-balloon_framework.Tpo -c -o >>>>>>>>> examples/balloon_framework-balloon_framework.o `test -f >>>>>>>>> 'examples/balloon_framework.cpp' || echo >>>>>>>>> '../../src/'`examples/balloon_framework.cpp >>>>>>>>>>>> mv -f examples/.deps/balloon_framework-balloon_framework.Tpo >>>>>>>>> examples/.deps/balloon_framework-balloon_framework.Po >>>>>>>>>>>> /bin/bash ../libtool --tag=CXX --mode=link g++ -pthread -g -g2 >>>>>> -O2 >>>>>>>>> -std=c++0x -o balloon-framework >>>>>>>>> examples/balloon_framework-balloon_framework.o libmesos.la -lsasl2 >>>>>> -lcurl >>>>>>>>> -lz -lrt >>>>>>>>>>>> libtool: link: g++ -pthread -g -g2 -O2 -std=c++0x -o >>>>>>>>> .libs/balloon-framework >>>>>> examples/balloon_framework-balloon_framework.o >>>>>>>>> ./.libs/libmesos.so -lsasl2 /usr/lib/x86_64-linux-gnu/libcurl.so >>>>>> -lz -lrt >>>>>>>>> -pthread -Wl,-rpath -Wl,< >>>>>>>>> >>>>>> https://builds.apache.org/job/Mesos-Trunk-Ubuntu-Build-In-Src-Set-JAVA_HOME/ws/mesos-0.19.0/_inst/lib >>>>>>>>>> >>>>>>>>>>>> g++ -DPACKAGE_NAME=\"mesos\" -DPACKAGE_TARNAME=\"mesos\" >>>>>>>>> -DPACKAGE_VERSION=\"0.19.0\" -DPACKAGE_STRING=\"mesos\ 0.19.0\" >>>>>>>>> -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"mesos\" >>>>>>>>> -DVERSION=\"0.19.0\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 >>>>>>>>> -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 >>>>>> -DHAVE_MEMORY_H=1 >>>>>>>>> -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 >>>>>> -DHAVE_UNISTD_H=1 >>>>>>>>> -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DHAVE_PTHREAD=1 >>>>>> -DMESOS_HAS_JAVA=1 >>>>>>>>> -DHAVE_PYTHON=\"2.7\" -DMESOS_HAS_PYTHON=1 -DHAVE_LIBZ=1 >>>>>> -DHAVE_LIBCURL=1 >>>>>>>>> -DHAVE_LIBSASL2=1 -I. -I../../src -Wall -Werror -DLIBDIR=\"< >>>>>>>>> >>>>>> https://builds.apache.org/job/Mesos-Trunk-Ubuntu-Build-In-Src-Set-JAVA_HOME/ws/mesos-0.19.0/_inst/lib\ >>>>>> "> >>>>>>>>> -DPKGLIBEXECDIR=\"< >>>>>>>>> >>>>>> https://builds.apache.org/job/Mesos-Trunk-Ubuntu-Build-In-Src-Set-JAVA_HOME/ws/mesos-0.19.0/_inst/libexec/mesos\ >>>>>> "> >>>>>>>>> -DPKGDATADIR=\"< >>>>>>>>> >>>>>> https://builds.apache.org/job/Mesos-Trunk-Ubuntu-Build-In-Src-Set-JAVA_HOME/ws/mesos-0.19.0/_inst/share/mesos\ >>>>>> "> >>>>>>>>> -I../../include -I../../3rdparty/libprocess/include >>>>>>>>> -I../../3rdparty/libprocess/3rdparty/stout/include -I../include >>>>>>>>> -I../3rdparty/libprocess/3rdparty/boost-1.53.0 >>>>>>>>> -I../3rdparty/libprocess/3rdparty/protobuf-2.5.0/src >>>>>>>>> -I../3rdparty/libprocess/3rdparty/picojson-4f93734 >>>>>>>>> -I../3rdparty/libprocess/3rdparty/glog-0.3.3/src >>>>>>>>> -I../3rdparty/leveldb/include >>>>>> -I../3rdparty/zookeeper-3.4.5/src/c/include >>>>>>>>> -I../3rdparty/zookeeper-3.4.5/src/c/generated -pthread -g -g2 -O2 >>>>>>>>> -std=c++0x -MT examples/balloon_executor-balloon_executor.o -MD -MP >>>>>> -MF >>>>>>>>> examples/.deps/balloon_executor-balloon_executor.Tpo -c -o >>>>>>>>> examples/balloon_executor-balloon_executor.o `test -f >>>>>>>>> 'examples/balloon_executor.cpp' || echo >>>>>>>>> '../../src/'`examples/balloon_executor.cpp >>>>>>>>>>>> mv -f examples/.deps/balloon_executor-balloon_executor.Tpo >>>>>>>>> examples/.deps/balloon_executor-balloon_executor.Po >>>>>>>>>>>> /bin/bash ../libtool --tag=CXX --mode=link g++ -pthread -g -g2 >>>>>> -O2 >>>>>>>>> -std=c++0x -o balloon-executor >>>>>>>>> examples/balloon_executor-balloon_executor.o libmesos.la -lsasl2 >>>>>> -lcurl >>>>>>>>> -lz -lrt >>>>>>>>>>>> libtool: link: g++ -pthread -g -g2 -O2 -std=c++0x -o >>>>>>>>> .libs/balloon-executor examples/balloon_executor-balloon_executor.o >>>>>>>>> ./.libs/libmesos.so -lsasl2 /usr/lib/x86_64-linux-gnu/libcurl.so >>>>>> -lz -lrt >>>>>>>>> -pthread -Wl,-rpath -Wl,< >>>>>>>>> >>>>>> https://builds.apache.org/job/Mesos-Trunk-Ubuntu-Build-In-Src-Set-JAVA_HOME/ws/mesos-0.19.0/_inst/lib >>>>>>>>>> >>>>>>>>>>>> g++ -DPACKAGE_NAME=\"mesos\" -DPACKAGE_TARNAME=\"mesos\" >>>>>>>>> -DPACKAGE_VERSION=\"0.19.0\" -DPACKAGE_STRING=\"mesos\ 0.19.0\" >>>>>>>>> -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"mesos\" >>>>>>>>> -DVERSION=\"0.19.0\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 >>>>>>>>> -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 >>>>>> -DHAVE_MEMORY_H=1 >>>>>>>>> -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 >>>>>> -DHAVE_UNISTD_H=1 >>>>>>>>> -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DHAVE_PTHREAD=1 >>>>>> -DMESOS_HAS_JAVA=1 >>>>>>>>> -DHAVE_PYTHON=\"2.7\" -DMESOS_HAS_PYTHON=1 -DHAVE_LIBZ=1 >>>>>> -DHAVE_LIBCURL=1 >>>>>>>>> -DHAVE_LIBSASL2=1 -I. -I../../src -Wall -Werror -DLIBDIR=\"< >>>>>>>>> >>>>>> https://builds.apache.org/job/Mesos-Trunk-Ubuntu-Build-In-Src-Set-JAVA_HOME/ws/mesos-0.19.0/_inst/lib\ >>>>>> "> >>>>>>>>> -DPKGLIBEXECDIR=\"< >>>>>>>>> >>>>>> https://builds.apache.org/job/Mesos-Trunk-Ubuntu-Build-In-Src-Set-JAVA_HOME/ws/mesos-0.19.0/_inst/libexec/mesos\ >>>>>> "> >>>>>>>>> -DPKGDATADIR=\"< >>>>>>>>> >>>>>> https://builds.apache.org/job/Mesos-Trunk-Ubuntu-Build-In-Src-Set-JAVA_HOME/ws/mesos-0.19.0/_inst/share/mesos\ >>>>>> "> >>>>>>>>> -I../../include -I../../3rdparty/libprocess/include >>>>>>>>> -I../../3rdparty/libprocess/3rdparty/stout/include -I../include >>>>>>>>> -I../3rdparty/libprocess/3rdparty/boost-1.53.0 >>>>>>>>> -I../3rdparty/libprocess/3rdparty/protobuf-2.5.0/src >>>>>>>>> -I../3rdparty/libprocess/3rdparty/picojson-4f93734 >>>>>>>>> -I../3rdparty/libprocess/3rdparty/glog-0.3.3/src >>>>>>>>> -I../3rdparty/leveldb/include >>>>>> -I../3rdparty/zookeeper-3.4.5/src/c/include >>>>>>>>> -I../3rdparty/zookeeper-3.4.5/src/c/generated -DSOURCE_DIR=\"< >>>>>>>>> >>>>>> https://builds.apache.org/job/Mesos-Trunk-Ubuntu-Build-In-Src-Set-JAVA_HOME/ws/mesos-0.19.0/_build/. >>>>>> .\"> >>>>>>>>> -DBUILD_DIR=\"< >>>>>>>>> >>>>>> https://builds.apache.org/job/Mesos-Trunk-Ubuntu-Build-In-Src-Set-JAVA_HOME/ws/mesos-0.19.0/_build\ >>>>>> "> >>>>>>>>> -I../3rdparty/libprocess/3rdparty/gmock-1.6.0/gtest/include >>>>>>>>> -I../3rdparty/libprocess/3rdparty/gmock-1.6.0/include >>>>>>>>> -I/home/jenkins/tools/java/jdk1.6.0_20-64/include >>>>>>>>> -I/home/jenkins/tools/java/jdk1.6.0_20-64/include/linux >>>>>>>>> -DZOOKEEPER_VERSION=\"3.4.5\" -pthread -g -g2 -O2 -std=c++0x -MT >>>>>>>>> tests/mesos_tests-allocator_tests.o -MD -MP -MF >>>>>>>>> tests/.deps/mesos_tests-allocator_tests.Tpo -c -o >>>>>>>>> tests/mesos_tests-allocator_tests.o `test -f >>>>>> 'tests/allocator_tests.cpp' || >>>>>>>>> echo '../../src/'`tests/allocator_tests.cpp >>>>>>>>>>>> mv -f tests/.deps/mesos_tests-allocator_tests.Tpo >>>>>>>>> tests/.deps/mesos_tests-allocator_tests.Po >>>>>>>>>>>> g++ -DPACKAGE_NAME=\"mesos\" -DPACKAGE_TARNAME=\"mesos\" >>>>>>>>> -DPACKAGE_VERSION=\"0.19.0\" -DPACKAGE_STRING=\"mesos\ 0.19.0\" >>>>>>>>> -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"mesos\" >>>>>>>>> -DVERSION=\"0.19.0\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 >>>>>>>>> -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 >>>>>> -DHAVE_MEMORY_H=1 >>>>>>>>> -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 >>>>>> -DHAVE_UNISTD_H=1 >>>>>>>>> -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DHAVE_PTHREAD=1 >>>>>> -DMESOS_HAS_JAVA=1 >>>>>>>>> -DHAVE_PYTHON=\"2.7\" -DMESOS_HAS_PYTHON=1 -DHAVE_LIBZ=1 >>>>>> -DHAVE_LIBCURL=1 >>>>>>>>> -DHAVE_LIBSASL2=1 -I. -I../../src -Wall -Werror -DLIBDIR=\"< >>>>>>>>> >>>>>> https://builds.apache.org/job/Mesos-Trunk-Ubuntu-Build-In-Src-Set-JAVA_HOME/ws/mesos-0.19.0/_inst/lib\ >>>>>> "> >>>>>>>>> -DPKGLIBEXECDIR=\"< >>>>>>>>> >>>>>> https://builds.apache.org/job/Mesos-Trunk-Ubuntu-Build-In-Src-Set-JAVA_HOME/ws/mesos-0.19.0/_inst/libexec/mesos\ >>>>>> "> >>>>>>>>> -DPKGDATADIR=\"< >>>>>>>>> >>>>>> https://builds.apache.org/job/Mesos-Trunk-Ubuntu-Build-In-Src-Set-JAVA_HOME/ws/mesos-0.19.0/_inst/share/mesos\ >>>>>> "> >>>>>>>>> -I../../include -I../../3rdparty/libprocess/include >>>>>>>>> -I../../3rdparty/libprocess/3rdparty/stout/include -I../include >>>>>>>>> -I../3rdparty/libprocess/3rdparty/boost-1.53.0 >>>>>>>>> -I../3rdparty/libprocess/3rdparty/protobuf-2.5.0/src >>>>>>>>> -I../3rdparty/libprocess/3rdparty/picojson-4f93734 >>>>>>>>> -I../3rdparty/libprocess/3rdparty/glog-0.3.3/src >>>>>>>>> -I../3rdparty/leveldb/include >>>>>> -I../3rdparty/zookeeper-3.4.5/src/c/include >>>>>>>>> -I../3rdparty/zookeeper-3.4.5/src/c/generated -DSOURCE_DIR=\"< >>>>>>>>> >>>>>> https://builds.apache.org/job/Mesos-Trunk-Ubuntu-Build-In-Src-Set-JAVA_HOME/ws/mesos-0.19.0/_build/. >>>>>> .\"> >>>>>>>>> -DBUILD_DIR=\"< >>>>>>>>> >>>>>> https://builds.apache.org/job/Mesos-Trunk-Ubuntu-Build-In-Src-Set-JAVA_HOME/ws/mesos-0.19.0/_build\ >>>>>> "> >>>>>>>>> -I../3rdparty/libprocess/3rdparty/gmock-1.6.0/gtest/include >>>>>>>>> -I../3rdparty/libprocess/3rdparty/gmock-1.6.0/include >>>>>>>>> -I/home/jenkins/tools/java/jdk1.6.0_20-64/include >>>>>>>>> -I/home/jenkins/tools/java/jdk1.6.0_20-64/include/linux >>>>>>>>> -DZOOKEEPER_VERSION=\"3.4.5\" -pthread -g -g2 -O2 -std=c++0x -MT >>>>>>>>> tests/mesos_tests-attributes_tests.o -MD -MP -MF >>>>>>>>> tests/.deps/mesos_tests-attributes_tests.Tpo -c -o >>>>>>>>> tests/mesos_tests-attributes_tests.o `test -f >>>>>> 'tests/attributes_tests.cpp' >>>>>>>>> || echo '../../src/'`tests/attributes_tests.cpp >>>>>>>>>>>> mv -f tests/.deps/mesos_tests-attributes_tests.Tpo >>>>>>>>> tests/.deps/mesos_tests-attributes_tests.Po >>>>>>>>>>>> g++ -DPACKAGE_NAME=\"mesos\" -DPACKAGE_TARNAME=\"mesos\" >>>>>>>>> -DPACKAGE_VERSION=\"0.19.0\" -DPACKAGE_STRING=\"mesos\ 0.19.0\" >>>>>>>>> -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"mesos\" >>>>>>>>> -DVERSION=\"0.19.0\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 >>>>>>>>> -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 >>>>>> -DHAVE_MEMORY_H=1 >>>>>>>>> -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 >>>>>> -DHAVE_UNISTD_H=1 >>>>>>>>> -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DHAVE_PTHREAD=1 >>>>>> -DMESOS_HAS_JAVA=1 >>>>>>>>> -DHAVE_PYTHON=\"2.7\" -DMESOS_HAS_PYTHON=1 -DHAVE_LIBZ=1 >>>>>> -DHAVE_LIBCURL=1 >>>>>>>>> -DHAVE_LIBSASL2=1 -I. -I../../src -Wall -Werror -DLIBDIR=\"< >>>>>>>>> >>>>>> https://builds.apache.org/job/Mesos-Trunk-Ubuntu-Build-In-Src-Set-JAVA_HOME/ws/mesos-0.19.0/_inst/lib\ >>>>>> "> >>>>>>>>> -DPKGLIBEXECDIR=\"< >>>>>>>>> >>>>>> https://builds.apache.org/job/Mesos-Trunk-Ubuntu-Build-In-Src-Set-JAVA_HOME/ws/mesos-0.19.0/_inst/libexec/mesos\ >>>>>> "> >>>>>>>>> -DPKGDATADIR=\"< >>>>>>>>> >>>>>> https://builds.apache.org/job/Mesos-Trunk-Ubuntu-Build-In-Src-Set-JAVA_HOME/ws/mesos-0.19.0/_inst/share/mesos\ >>>>>> "> >>>>>>>>> -I../../include -I../../3rdparty/libprocess/include >>>>>>>>> -I../../3rdparty/libprocess/3rdparty/stout/include -I../include >>>>>>>>> -I../3rdparty/libprocess/3rdparty/boost-1.53.0 >>>>>>>>> -I../3rdparty/libprocess/3rdparty/protobuf-2.5.0/src >>>>>>>>> -I../3rdparty/libprocess/3rdparty/picojson-4f93734 >>>>>>>>> -I../3rdparty/libprocess/3rdparty/glog-0.3.3/src >>>>>>>>> -I../3rdparty/leveldb/include >>>>>> -I../3rdparty/zookeeper-3.4.5/src/c/include >>>>>>>>> -I../3rdparty/zookeeper-3.4.5/src/c/generated -DSOURCE_DIR=\"< >>>>>>>>> >>>>>> https://builds.apache.org/job/Mesos-Trunk-Ubuntu-Build-In-Src-Set-JAVA_HOME/ws/mesos-0.19.0/_build/. >>>>>> .\"> >>>>>>>>> -DBUILD_DIR=\"< >>>>>>>>> >>>>>> https://builds.apache.org/job/Mesos-Trunk-Ubuntu-Build-In-Src-Set-JAVA_HOME/ws/mesos-0.19.0/_build\ >>>>>> "> >>>>>>>>> -I../3rdparty/libprocess/3rdparty/gmock-1.6.0/gtest/include >>>>>>>>> -I../3rdparty/libprocess/3rdparty/gmock-1.6.0/include >>>>>>>>> -I/home/jenkins/tools/java/jdk1.6.0_20-64/include >>>>>>>>> -I/home/jenkins/tools/java/jdk1.6.0_20-64/include/linux >>>>>>>>> -DZOOKEEPER_VERSION=\"3.4.5\" -pthread -g -g2 -O2 -std=c++0x -MT >>>>>>>>> tests/mesos_tests-authentication_tests.o -MD -MP -MF >>>>>>>>> tests/.deps/mesos_tests-authentication_tests.Tpo -c -o >>>>>>>>> tests/mesos_tests-authentication_tests.o `test -f >>>>>>>>> 'tests/authentication_tests.cpp' || echo >>>>>>>>> '../../src/'`tests/authentication_tests.cpp >>>>>>>>>>>> mv -f tests/.deps/mesos_tests-authentication_tests.Tpo >>>>>>>>> tests/.deps/mesos_tests-authentication_tests.Po >>>>>>>>>>>> g++ -DPACKAGE_NAME=\"mesos\" -DPACKAGE_TARNAME=\"mesos\" >>>>>>>>> -DPACKAGE_VERSION=\"0.19.0\" -DPACKAGE_STRING=\"mesos\ 0.19.0\" >>>>>>>>> -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"mesos\" >>>>>>>>> -DVERSION=\"0.19.0\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 >>>>>>>>> -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 >>>>>> -DHAVE_MEMORY_H=1 >>>>>>>>> -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 >>>>>> -DHAVE_UNISTD_H=1 >>>>>>>>> -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DHAVE_PTHREAD=1 >>>>>> -DMESOS_HAS_JAVA=1 >>>>>>>>> -DHAVE_PYTHON=\"2.7\" -DMESOS_HAS_PYTHON=1 -DHAVE_LIBZ=1 >>>>>> -DHAVE_LIBCURL=1 >>>>>>>>> -DHAVE_LIBSASL2=1 -I. -I../../src -Wall -Werror -DLIBDIR=\"< >>>>>>>>> >>>>>> https://builds.apache.org/job/Mesos-Trunk-Ubuntu-Build-In-Src-Set-JAVA_HOME/ws/mesos-0.19.0/_inst/lib\ >>>>>> "> >>>>>>>>> -DPKGLIBEXECDIR=\"< >>>>>>>>> >>>>>> https://builds.apache.org/job/Mesos-Trunk-Ubuntu-Build-In-Src-Set-JAVA_HOME/ws/mesos-0.19.0/_inst/libexec/mesos\ >>>>>> "> >>>>>>>>> -DPKGDATADIR=\"< >>>>>>>>> >>>>>> https://builds.apache.org/job/Mesos-Trunk-Ubuntu-Build-In-Src-Set-JAVA_HOME/ws/mesos-0.19.0/_inst/share/mesos\ >>>>>> "> >>>>>>>>> -I../../include -I../../3rdparty/libprocess/include >>>>>>>>> -I../../3rdparty/libprocess/3rdparty/stout/include -I../include >>>>>>>>> -I../3rdparty/libprocess/3rdparty/boost-1.53.0 >>>>>>>>> -I../3rdparty/libprocess/3rdparty/protobuf-2.5.0/src >>>>>>>>> -I../3rdparty/libprocess/3rdparty/picojson-4f93734 >>>>>>>>> -I../3rdparty/libprocess/3rdparty/glog-0.3.3/src >>>>>>>>> -I../3rdparty/leveldb/include >>>>>> -I../3rdparty/zookeeper-3.4.5/src/c/include >>>>>>>>> -I../3rdparty/zookeeper-3.4.5/src/c/generated -DSOURCE_DIR=\"< >>>>>>>>> >>>>>> https://builds.apache.org/job/Mesos-Trunk-Ubuntu-Build-In-Src-Set-JAVA_HOME/ws/mesos-0.19.0/_build/. >>>>>> .\"> >>>>>>>>> -DBUILD_DIR=\"< >>>>>>>>> >>>>>> https://builds.apache.org/job/Mesos-Trunk-Ubuntu-Build-In-Src-Set-JAVA_HOME/ws/mesos-0.19.0/_build\ >>>>>> "> >>>>>>>>> -I../3rdparty/libprocess/3rdparty/gmock-1.6.0/gtest/include >>>>>>>>> -I../3rdparty/libprocess/3rdparty/gmock-1.6.0/include >>>>>>>>> -I/home/jenkins/tools/java/jdk1.6.0_20-64/include >>>>>>>>> -I/home/jenkins/tools/java/jdk1.6.0_20-64/include/linux >>>>>>>>> -DZOOKEEPER_VERSION=\"3.4.5\" -pthread -g -g2 -O2 -std=c++0x -MT >>>>>>>>> tests/mesos_tests-containerizer.o -MD -MP -MF >>>>>>>>> tests/.deps/mesos_tests-containerizer.Tpo -c -o >>>>>>>>> tests/mesos_tests-containerizer.o `test -f >>>>>> 'tests/containerizer.cpp' || >>>>>>>>> echo '../../src/'`tests/containerizer.cpp >>>>>>>>>>>> mv -f tests/.deps/mesos_tests-containerizer.Tpo >>>>>>>>> tests/.deps/mesos_tests-containerizer.Po >>>>>>>>>>>> g++ -DPACKAGE_NAME=\"mesos\" -DPACKAGE_TARNAME=\"mesos\" >>>>>>>>> -DPACKAGE_VERSION=\"0.19.0\" -DPACKAGE_STRING=\"mesos\ 0.19.0\" >>>>>>>>> -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"mesos\" >>>>>>>>> -DVERSION=\"0.19.0\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 >>>>>>>>> -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 >>>>>> -DHAVE_MEMORY_H=1 >>>>>>>>> -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 >>>>>> -DHAVE_UNISTD_H=1 >>>>>>>>> -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DHAVE_PTHREAD=1 >>>>>> -DMESOS_HAS_JAVA=1 >>>>>>>>> -DHAVE_PYTHON=\"2.7\" -DMESOS_HAS_PYTHON=1 -DHAVE_LIBZ=1 >>>>>> -DHAVE_LIBCURL=1 >>>>>>>>> -DHAVE_LIBSASL2=1 -I. -I../../src -Wall -Werror -DLIBDIR=\"< >>>>>>>>> >>>>>> https://builds.apache.org/job/Mesos-Trunk-Ubuntu-Build-In-Src-Set-JAVA_HOME/ws/mesos-0.19.0/_inst/lib\ >>>>>> "> >>>>>>>>> -DPKGLIBEXECDIR=\"< >>>>>>>>> >>>>>> https://builds.apache.org/job/Mesos-Trunk-Ubuntu-Build-In-Src-Set-JAVA_HOME/ws/mesos-0.19.0/_inst/libexec/mesos\ >>>>>> "> >>>>>>>>> -DPKGDATADIR=\"< >>>>>>>>> >>>>>> https://builds.apache.org/job/Mesos-Trunk-Ubuntu-Build-In-Src-Set-JAVA_HOME/ws/mesos-0.19.0/_inst/share/mesos\ >>>>>> "> >>>>>>>>> -I../../include -I../../3rdparty/libprocess/include >>>>>>>>> -I../../3rdparty/libprocess/3rdparty/stout/include -I../include >>>>>>>>> -I../3rdparty/libprocess/3rdparty/boost-1.53.0 >>>>>>>>> -I../3rdparty/libprocess/3rdparty/protobuf-2.5.0/src >>>>>>>>> -I../3rdparty/libprocess/3rdparty/picojson-4f93734 >>>>>>>>> -I../3rdparty/libprocess/3rdparty/glog-0.3.3/src >>>>>>>>> -I../3rdparty/leveldb/include >>>>>> -I../3rdparty/zookeeper-3.4.5/src/c/include >>>>>>>>> -I../3rdparty/zookeeper-3.4.5/src/c/generated -DSOURCE_DIR=\"< >>>>>>>>> >>>>>> https://builds.apache.org/job/Mesos-Trunk-Ubuntu-Build-In-Src-Set-JAVA_HOME/ws/mesos-0.19.0/_build/. >>>>>> .\"> >>>>>>>>> -DBUILD_DIR=\"< >>>>>>>>> >>>>>> https://builds.apache.org/job/Mesos-Trunk-Ubuntu-Build-In-Src-Set-JAVA_HOME/ws/mesos-0.19.0/_build\ >>>>>> "> >>>>>>>>> -I../3rdparty/libprocess/3rdparty/gmock-1.6.0/gtest/include >>>>>>>>> -I../3rdparty/libprocess/3rdparty/gmock-1.6.0/include >>>>>>>>> -I/home/jenkins/tools/java/jdk1.6.0_20-64/include >>>>>>>>> -I/home/jenkins/tools/java/jdk1.6.0_20-64/include/linux >>>>>>>>> -DZOOKEEPER_VERSION=\"3.4.5\" -pthread -g -g2 -O2 -std=c++0x -MT >>>>>>>>> tests/mesos_tests-containerizer_tests.o -MD -MP -MF >>>>>>>>> tests/.deps/mesos_tests-containerizer_tests.Tpo -c -o >>>>>>>>> tests/mesos_tests-containerizer_tests.o `test -f >>>>>>>>> 'tests/containerizer_tests.cpp' || echo >>>>>>>>> '../../src/'`tests/containerizer_tests.cpp >>>>>>>>>>>> ../../src/tests/containerizer_tests.cpp:37:30: fatal error: >>>>>>>>> tests/isolator.hpp: No such file or directory >>>>>>>>>>>> compilation terminated. >>>>>>>>>>>> make[4]: *** [tests/mesos_tests-containerizer_tests.o] Error 1 >>>>>>>>>>>> make[4]: Leaving directory `< >>>>>>>>> >>>>>> https://builds.apache.org/job/Mesos-Trunk-Ubuntu-Build-In-Src-Set-JAVA_HOME/ws/mesos-0.19.0/_build/src >>>>>>>>> '> >>>>>>>>>>>> make[3]: *** [check-am] Error 2 >>>>>>>>>>>> make[3]: Leaving directory `< >>>>>>>>> >>>>>> https://builds.apache.org/job/Mesos-Trunk-Ubuntu-Build-In-Src-Set-JAVA_HOME/ws/mesos-0.19.0/_build/src >>>>>>>>> '> >>>>>>>>>>>> make[2]: *** [check] Error 2 >>>>>>>>>>>> make[2]: Leaving directory `< >>>>>>>>> >>>>>> https://builds.apache.org/job/Mesos-Trunk-Ubuntu-Build-In-Src-Set-JAVA_HOME/ws/mesos-0.19.0/_build/src >>>>>>>>> '> >>>>>>>>>>>> make[1]: *** [check-recursive] Error 1 >>>>>>>>>>>> make[1]: Leaving directory `< >>>>>>>>> >>>>>> https://builds.apache.org/job/Mesos-Trunk-Ubuntu-Build-In-Src-Set-JAVA_HOME/ws/mesos-0.19.0/_build >>>>>>>>> '> >>>>>>>>>>>> make: *** [distcheck] Error 1 >>>>>>>>>>>> Build step 'Execute shell' marked build as failure >>>>>>>>>>>> >>>>>>>>>>> >>>>>>>>>> >>>>>>>>> >>>>>>>>> >>>>>>> >>>>>> >>>>>> >>>>> >>>> >>> >
