##// END OF EJS Templates
tests: work around libressl being different about error strings (issue6122)...
Augie Fackler -
r42542:e0ac310b default
parent child Browse files
Show More
@@ -488,26 +488,26 b' Clients requiring newer TLS version than'
488 (could not negotiate a common security protocol (tls1.1+) with localhost; the likely cause is Mercurial is configured to be more secure than the server can support)
488 (could not negotiate a common security protocol (tls1.1+) with localhost; the likely cause is Mercurial is configured to be more secure than the server can support)
489 (consider contacting the operator of this server and ask them to support modern TLS protocol versions; or, set hostsecurity.localhost:minimumprotocol=tls1.0 to allow use of legacy, less secure protocols when communicating with this server)
489 (consider contacting the operator of this server and ask them to support modern TLS protocol versions; or, set hostsecurity.localhost:minimumprotocol=tls1.0 to allow use of legacy, less secure protocols when communicating with this server)
490 (see https://mercurial-scm.org/wiki/SecureConnections for more info)
490 (see https://mercurial-scm.org/wiki/SecureConnections for more info)
491 abort: error: *unsupported protocol* (glob)
491 abort: error: .*(unsupported protocol|wrong ssl version).* (re)
492 [255]
492 [255]
493
493
494 $ P="$CERTSDIR" hg --config hostsecurity.minimumprotocol=tls1.1 id https://localhost:$HGPORT/
494 $ P="$CERTSDIR" hg --config hostsecurity.minimumprotocol=tls1.1 id https://localhost:$HGPORT/
495 (could not negotiate a common security protocol (tls1.1+) with localhost; the likely cause is Mercurial is configured to be more secure than the server can support)
495 (could not negotiate a common security protocol (tls1.1+) with localhost; the likely cause is Mercurial is configured to be more secure than the server can support)
496 (consider contacting the operator of this server and ask them to support modern TLS protocol versions; or, set hostsecurity.localhost:minimumprotocol=tls1.0 to allow use of legacy, less secure protocols when communicating with this server)
496 (consider contacting the operator of this server and ask them to support modern TLS protocol versions; or, set hostsecurity.localhost:minimumprotocol=tls1.0 to allow use of legacy, less secure protocols when communicating with this server)
497 (see https://mercurial-scm.org/wiki/SecureConnections for more info)
497 (see https://mercurial-scm.org/wiki/SecureConnections for more info)
498 abort: error: *unsupported protocol* (glob)
498 abort: error: .*(unsupported protocol|wrong ssl version).* (re)
499 [255]
499 [255]
500 $ P="$CERTSDIR" hg --config hostsecurity.minimumprotocol=tls1.2 id https://localhost:$HGPORT/
500 $ P="$CERTSDIR" hg --config hostsecurity.minimumprotocol=tls1.2 id https://localhost:$HGPORT/
501 (could not negotiate a common security protocol (tls1.2+) with localhost; the likely cause is Mercurial is configured to be more secure than the server can support)
501 (could not negotiate a common security protocol (tls1.2+) with localhost; the likely cause is Mercurial is configured to be more secure than the server can support)
502 (consider contacting the operator of this server and ask them to support modern TLS protocol versions; or, set hostsecurity.localhost:minimumprotocol=tls1.0 to allow use of legacy, less secure protocols when communicating with this server)
502 (consider contacting the operator of this server and ask them to support modern TLS protocol versions; or, set hostsecurity.localhost:minimumprotocol=tls1.0 to allow use of legacy, less secure protocols when communicating with this server)
503 (see https://mercurial-scm.org/wiki/SecureConnections for more info)
503 (see https://mercurial-scm.org/wiki/SecureConnections for more info)
504 abort: error: *unsupported protocol* (glob)
504 abort: error: .*(unsupported protocol|wrong ssl version).* (re)
505 [255]
505 [255]
506 $ P="$CERTSDIR" hg --config hostsecurity.minimumprotocol=tls1.2 id https://localhost:$HGPORT1/
506 $ P="$CERTSDIR" hg --config hostsecurity.minimumprotocol=tls1.2 id https://localhost:$HGPORT1/
507 (could not negotiate a common security protocol (tls1.2+) with localhost; the likely cause is Mercurial is configured to be more secure than the server can support)
507 (could not negotiate a common security protocol (tls1.2+) with localhost; the likely cause is Mercurial is configured to be more secure than the server can support)
508 (consider contacting the operator of this server and ask them to support modern TLS protocol versions; or, set hostsecurity.localhost:minimumprotocol=tls1.0 to allow use of legacy, less secure protocols when communicating with this server)
508 (consider contacting the operator of this server and ask them to support modern TLS protocol versions; or, set hostsecurity.localhost:minimumprotocol=tls1.0 to allow use of legacy, less secure protocols when communicating with this server)
509 (see https://mercurial-scm.org/wiki/SecureConnections for more info)
509 (see https://mercurial-scm.org/wiki/SecureConnections for more info)
510 abort: error: *unsupported protocol* (glob)
510 abort: error: .*(unsupported protocol|wrong ssl version).* (re)
511 [255]
511 [255]
512
512
513 --insecure will allow TLS 1.0 connections and override configs
513 --insecure will allow TLS 1.0 connections and override configs
@@ -530,7 +530,7 b' The per-host config option by itself wor'
530 (could not negotiate a common security protocol (tls1.2+) with localhost; the likely cause is Mercurial is configured to be more secure than the server can support)
530 (could not negotiate a common security protocol (tls1.2+) with localhost; the likely cause is Mercurial is configured to be more secure than the server can support)
531 (consider contacting the operator of this server and ask them to support modern TLS protocol versions; or, set hostsecurity.localhost:minimumprotocol=tls1.0 to allow use of legacy, less secure protocols when communicating with this server)
531 (consider contacting the operator of this server and ask them to support modern TLS protocol versions; or, set hostsecurity.localhost:minimumprotocol=tls1.0 to allow use of legacy, less secure protocols when communicating with this server)
532 (see https://mercurial-scm.org/wiki/SecureConnections for more info)
532 (see https://mercurial-scm.org/wiki/SecureConnections for more info)
533 abort: error: *unsupported protocol* (glob)
533 abort: error: .*(unsupported protocol|wrong ssl version).* (re)
534 [255]
534 [255]
535
535
536 .hg/hgrc file [hostsecurity] settings are applied to remote ui instances (issue5305)
536 .hg/hgrc file [hostsecurity] settings are applied to remote ui instances (issue5305)
@@ -543,7 +543,7 b' The per-host config option by itself wor'
543 (could not negotiate a common security protocol (tls1.2+) with localhost; the likely cause is Mercurial is configured to be more secure than the server can support)
543 (could not negotiate a common security protocol (tls1.2+) with localhost; the likely cause is Mercurial is configured to be more secure than the server can support)
544 (consider contacting the operator of this server and ask them to support modern TLS protocol versions; or, set hostsecurity.localhost:minimumprotocol=tls1.0 to allow use of legacy, less secure protocols when communicating with this server)
544 (consider contacting the operator of this server and ask them to support modern TLS protocol versions; or, set hostsecurity.localhost:minimumprotocol=tls1.0 to allow use of legacy, less secure protocols when communicating with this server)
545 (see https://mercurial-scm.org/wiki/SecureConnections for more info)
545 (see https://mercurial-scm.org/wiki/SecureConnections for more info)
546 abort: error: *unsupported protocol* (glob)
546 abort: error: .*(unsupported protocol|wrong ssl version).* (re)
547 [255]
547 [255]
548
548
549 $ killdaemons.py hg0.pid
549 $ killdaemons.py hg0.pid
General Comments 0
You need to be logged in to leave comments. Login now