summaryrefslogtreecommitdiff
path: root/test/cctest
diff options
context:
space:
mode:
authorDaniel Bevenius <daniel.bevenius@gmail.com>2016-12-28 09:08:07 +0100
committerDaniel Bevenius <daniel.bevenius@gmail.com>2017-01-06 20:13:12 +0100
commit6d3c5b78c843335c822041aa07487078fc13e61f (patch)
tree1a65337d0453bd716a8921ba71146b865ba2ee4a /test/cctest
parente5499b32cfcde144ee41500356d45d990cd9df0e (diff)
downloadandroid-node-v8-6d3c5b78c843335c822041aa07487078fc13e61f.tar.gz
android-node-v8-6d3c5b78c843335c822041aa07487078fc13e61f.tar.bz2
android-node-v8-6d3c5b78c843335c822041aa07487078fc13e61f.zip
src: reduce test_inspector_socket_server output
Currently, when test/cctest/test_inspector_socket_server.cc is run there is output written to stderr by src/inspector_socket_server.cc which is interleaved with the gtest report: Debugger listening on port 9229. Warning: This is an experimental feature and could change at any time. To start debugging, open the following URLs in Chrome: ... The goal of this commit is to remove the above logged information by introducing an out_ member in the InspectorSocketServer class which defaults to stderr (keeping the current behavior). Setting out_ to NULL is supported in which case nothing will be written and is what the test has been configured with. When working on specific test case the appropriate output stream can be specified for the ServerHolder constructor to limit logging to that test case. PR-URL: https://github.com/nodejs/node/pull/10537 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Eugene Ostroukhov <eostroukhov@google.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Diffstat (limited to 'test/cctest')
-rw-r--r--test/cctest/test_inspector_socket_server.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/cctest/test_inspector_socket_server.cc b/test/cctest/test_inspector_socket_server.cc
index 136bf796ae..3c19661f97 100644
--- a/test/cctest/test_inspector_socket_server.cc
+++ b/test/cctest/test_inspector_socket_server.cc
@@ -300,9 +300,9 @@ class SocketWrapper {
class ServerHolder {
public:
template <typename Delegate>
- ServerHolder(Delegate* delegate, int port)
+ ServerHolder(Delegate* delegate, int port, FILE* out = NULL)
: closed(false), paused(false), sessions_terminated(false),
- server_(delegate, port) {
+ server_(delegate, port, out) {
delegate->Connect(&server_);
}