This is an automated email from the ASF dual-hosted git repository.
wesm pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow.git
The following commit(s) were added to refs/heads/master by this push:
new 170dc75 ARROW-1799: [Plasma C++] Make unittest does not create plasma
store executable
170dc75 is described below
commit 170dc75468efbad2286c630b9103d1aacdb6bada
Author: Lukasz A. Bartnik <[email protected]>
AuthorDate: Thu Aug 16 17:37:30 2018 -0400
ARROW-1799: [Plasma C++] Make unittest does not create plasma store
executable
Depends on PR https://github.com/apache/arrow/pull/2439
Author: Lukasz Bartnik <[email protected]>
Author: Lukasz A. Bartnik <[email protected]>
Closes #2440 from lbartnik/fix-1799 and squashes the following commits:
5762ec24 <Lukasz A. Bartnik> add dependency on plasma_store in
plasma/client_tests
---
cpp/src/plasma/CMakeLists.txt | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/cpp/src/plasma/CMakeLists.txt b/cpp/src/plasma/CMakeLists.txt
index 444f511..a753e98 100644
--- a/cpp/src/plasma/CMakeLists.txt
+++ b/cpp/src/plasma/CMakeLists.txt
@@ -199,4 +199,5 @@ endif()
ADD_ARROW_TEST(test/serialization_tests
EXTRA_LINK_LIBS plasma_static ${PLASMA_LINK_LIBS})
ADD_ARROW_TEST(test/client_tests
- EXTRA_LINK_LIBS plasma_static ${PLASMA_LINK_LIBS})
+ EXTRA_LINK_LIBS plasma_static ${PLASMA_LINK_LIBS}
+ EXTRA_DEPENDENCIES plasma_store)