Ignore default verify paths test on windows

This commit is contained in:
Steven Fackler 2020-06-06 13:38:58 -07:00
parent 60118dddad
commit 7546bfd148
2 changed files with 1 additions and 2 deletions

View File

@ -106,8 +106,6 @@ jobs:
run: echo "::set-output name=version::$(rustc --version)" run: echo "::set-output name=version::$(rustc --version)"
- name: Set vcpkg root - name: Set vcpkg root
run: echo "::set-env name=VCPKG_ROOT::$Env:VCPKG_INSTALLATION_ROOT" run: echo "::set-env name=VCPKG_ROOT::$Env:VCPKG_INSTALLATION_ROOT"
- name: test
run: echo $Env:VCPKG_ROOT
- name: Install OpenSSL - name: Install OpenSSL
run: vcpkg install openssl:x64-windows run: vcpkg install openssl:x64-windows
- name: Cache cargo index - name: Cache cargo index

View File

@ -599,6 +599,7 @@ fn refcount_ssl_context() {
#[test] #[test]
#[cfg_attr(libressl250, ignore)] #[cfg_attr(libressl250, ignore)]
#[cfg_attr(target_os = "windows", ignore)]
#[cfg_attr(all(target_os = "macos", feature = "vendored"), ignore)] #[cfg_attr(all(target_os = "macos", feature = "vendored"), ignore)]
fn default_verify_paths() { fn default_verify_paths() {
let mut ctx = SslContext::builder(SslMethod::tls()).unwrap(); let mut ctx = SslContext::builder(SslMethod::tls()).unwrap();