Skip to content

Commit

Permalink
travis: show debug output in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
joyeecheung committed Nov 28, 2017
1 parent cfa7012 commit 1a7b14d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,6 @@ plugin: configure
$(MAKE) -C out/

_travis: plugin
TEST_LLDB_BINARY=`which lldb-3.9` npm test
TEST_LLDB_BINARY=`which lldb-3.9` TEST_LLNODE_DEBUG=true npm test

.PHONY: all
2 changes: 1 addition & 1 deletion test/common.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ function llnodeDebug(...args) {
}

const debug = exports.debug =
process.env.LLNODE_DEBUG ? llnodeDebug : () => { };
process.env.TEST_LLNODE_DEBUG ? llnodeDebug : () => { };

let pluginName;
if (process.platform === 'darwin')
Expand Down

0 comments on commit 1a7b14d

Please sign in to comment.