##// 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 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 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 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 492 [255]
493 493
494 494 $ P="$CERTSDIR" hg --config hostsecurity.minimumprotocol=tls1.1 id https://localhost:$HGPORT/
495 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 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 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 499 [255]
500 500 $ P="$CERTSDIR" hg --config hostsecurity.minimumprotocol=tls1.2 id https://localhost:$HGPORT/
501 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 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 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 505 [255]
506 506 $ P="$CERTSDIR" hg --config hostsecurity.minimumprotocol=tls1.2 id https://localhost:$HGPORT1/
507 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 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 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 511 [255]
512 512
513 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 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 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 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 534 [255]
535 535
536 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 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 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 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 547 [255]
548 548
549 549 $ killdaemons.py hg0.pid
General Comments 0
You need to be logged in to leave comments. Login now