Thrift-1353: Switch to performance branch, get rid of BinaryParser
Client: Node.js
Patch: Wade Simmons
"binary" fields will be returned as Buffers instead of Strings
"int64" fields will be returned as http://github.com/broofa/node-int64 objects
git-svn-id: https://svn.apache.org/repos/asf/thrift/trunk@1401081 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/test/nodejs/client.js b/test/nodejs/client.js
index 3a82a83..88460b0 100644
--- a/test/nodejs/client.js
+++ b/test/nodejs/client.js
@@ -71,14 +71,11 @@
passed();
});
-/*
- * FATAL ERROR: CALL_AND_RETRY_2 Allocation failed - process out of memory
client.testI64(-5, function(err, response) {
if (err) { return failed(err); }
console.log("testI64(-5) = ", response);
passed();
});
- */
client.testI64(-34359738368, function(err, response) {
if (err) { return failed(err); }
diff --git a/test/test.sh b/test/test.sh
index 30a3709..30ca838 100755
--- a/test/test.sh
+++ b/test/test.sh
@@ -126,6 +126,10 @@
"make -C nodejs/ client" \
"make -C nodejs/ server" \
"1"
+do_test "nodejs-cpp" "binary" "framed-ip" \
+ "make -C nodejs/ client" \
+ "cpp/TestServer --transport=framed" \
+ "1"
do_test "cpp-nodejs" "binary" "framed-ip" \
"cpp/TestClient --transport=framed" \
"make -C nodejs/ server" \