Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 10A7F200BAA for ; Thu, 27 Oct 2016 13:54:39 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 0F66D160B01; Thu, 27 Oct 2016 11:54:39 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 55DB6160AE4 for ; Thu, 27 Oct 2016 13:54:38 +0200 (CEST) Received: (qmail 24325 invoked by uid 500); 27 Oct 2016 11:54:21 -0000 Mailing-List: contact dev-help@zookeeper.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@zookeeper.apache.org Delivered-To: mailing list dev@zookeeper.apache.org Received: (qmail 22261 invoked by uid 99); 27 Oct 2016 11:53:56 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 27 Oct 2016 11:53:56 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id C88ACDFBA0; Thu, 27 Oct 2016 11:53:55 +0000 (UTC) From: fpj To: dev@zookeeper.apache.org Reply-To: dev@zookeeper.apache.org References: In-Reply-To: Subject: [GitHub] zookeeper issue #90: ZOOKEEPER-761: Remove *synchronous* calls from the *sin... Content-Type: text/plain Message-Id: <20161027115355.C88ACDFBA0@git1-us-west.apache.org> Date: Thu, 27 Oct 2016 11:53:55 +0000 (UTC) archived-at: Thu, 27 Oct 2016 11:54:39 -0000 Github user fpj commented on the issue: https://github.com/apache/zookeeper/pull/90 @breed `make check` does not compile for me: ``` g++ -DHAVE_CONFIG_H -I. -I./include -I./tests -I./generated -DUSE_STATIC_LIB -DZKSERVER_CMD="\"./tests/zkServer.sh\"" -DZOO_IPV6_ENABLED -g -O2 -MT zktest_st-TestReconfigServer.o -MD -MP -MF .deps/zktest_st-TestReconfigServer.Tpo -c -o zktest_st-TestReconfigServer.o `test -f 'tests/TestReconfigServer.cc' || echo './'`tests/TestReconfigServer.cc In file included from /usr/include/cppunit/TestCase.h:6:0, from /usr/include/cppunit/TestCaller.h:5, from /usr/include/cppunit/extensions/HelperMacros.h:9, from tests/TestReconfigServer.cc:18: tests/TestReconfigServer.cc: In member function 'void TestReconfigServer::testRemoveFollower()': tests/TestReconfigServer.cc:153:73: error: 'zoo_getconfig' was not declared in this scope CPPUNIT_ASSERT_EQUAL((int)ZOK, zoo_getconfig(zk, 0, buf, &len, &stat)); ^ tests/TestReconfigServer.cc:174:32: error: 'zoo_reconfig' was not declared in this scope &stat); ^ In file included from /usr/include/cppunit/TestCase.h:6:0, from /usr/include/cppunit/TestCaller.h:5, from /usr/include/cppunit/extensions/HelperMacros.h:9, from tests/TestReconfigServer.cc:18: tests/TestReconfigServer.cc: In member function 'void TestReconfigServer::testNonIncremental()': tests/TestReconfigServer.cc:221:73: error: 'zoo_getconfig' was not declared in this scope CPPUNIT_ASSERT_EQUAL((int)ZOK, zoo_getconfig(zk, 0, buf, &len, &stat)); ^ tests/TestReconfigServer.cc:246:32: error: 'zoo_reconfig' was not declared in this scope &stat); ^ tests/TestReconfigServer.cc: In member function 'void TestReconfigServer::testRemoveConnectedFollower()': tests/TestReconfigServer.cc:313:72: error: 'zoo_reconfig' was not declared in this scope zoo_reconfig(zk, NULL, ss.str().c_str(), NULL, -1, buf, &len, &stat); ^ In file included from /usr/include/cppunit/TestCase.h:6:0, from /usr/include/cppunit/TestCaller.h:5, from /usr/include/cppunit/extensions/HelperMacros.h:9, from tests/TestReconfigServer.cc:18: tests/TestReconfigServer.cc:314:73: error: 'zoo_getconfig' was not declared in this scope CPPUNIT_ASSERT_EQUAL((int)ZOK, zoo_getconfig(zk, 0, buf, &len, &stat)); ``` have you tried running the C tests? --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastructure@apache.org or file a JIRA ticket with INFRA. ---