-
Notifications
You must be signed in to change notification settings - Fork 59
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Use PEM decoding from rustls-pki-types directly #145
Conversation
3c1eb3b
to
e73d170
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Generally looks good, but I think the ignored-by-default smoketests might need an update:
[daniel@noire:~/Code/Rust/rustls-native-certs]$ git rev-parse HEAD
e73d170bafb8a1704f31263ac3487e3a66a7c998
[daniel@noire:~/Code/Rust/rustls-native-certs]$ cargo test -- --ignored
....
failures:
---- nothing_works_with_broken_file_and_dir stdout ----
thread 'nothing_works_with_broken_file_and_dir' panicked at tests/smoketests.rs:254:5:
assertion failed: first_err.contains("open file")
note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace
---- google_with_dir_but_broken_file stdout ----
thread 'google_with_dir_but_broken_file' panicked at tests/smoketests.rs:215:5:
assertion failed: first_err.contains("open file")
failures:
google_with_dir_but_broken_file
nothing_works_with_broken_file_and_dir
test result: FAILED. 9 passed; 2 failed; 0 ignored; 0 measured; 0 filtered out; finished in 1.80s
error: test failed, to rerun pass `--test smoketests`
Edit: manual workflow dispatch agrees.
The error being returned for each of the failed I think the intent of that assertion (at least in the |
33f2b5c
to
cc086be
Compare
Tried to improve on this front:
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks, latest rev looks great.
No description provided.