Skip to content

Commit

Permalink
build: add a space to clarify skipping crypto msg
Browse files Browse the repository at this point in the history
This commit adds a space to the message that is displayed for tests that
are skipped when node was built --without-ssl. For example, this is what
is currently displayed:
"release test-https-agent-additional-optionsSkipping as node was
compiled without crypto support"

After this change this will be:
"release test-https-agent-additional-options Skipping as node was
compiled without crypto support"
  • Loading branch information
danbev committed Dec 13, 2018
1 parent a3801e9 commit bead436
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/testpy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,13 +73,13 @@ def GetCommand(self):
# failure so such tests are also skipped.
if (any(flag.startswith('--inspect') for flag in flags) and
not self.context.v8_enable_inspector):
print('Skipping as node was compiled without inspector support')
print(' Skipping as node was compiled without inspector support')
elif (('--use-bundled-ca' in flags or
'--use-openssl-ca' in flags or
'--tls-v1.0' in flags or
'--tls-v1.1' in flags) and
not self.context.node_has_crypto):
print('Skipping as node was compiled without crypto support')
print(' Skipping as node was compiled without crypto support')
else:
result += flags
files_match = FILES_PATTERN.search(source);
Expand Down

0 comments on commit bead436

Please sign in to comment.