Skip to content

Commit b24a009

Browse files
run conn str tests
1 parent dc2d99a commit b24a009

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

.evergreen/run-socks5-proxy-test.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ NOAUTH_PID=$!
2222
set +o errexit
2323

2424
cargo_test socks5_proxy
25+
cargo_test run_uri_options_spec_tests
2526

2627
kill $AUTH_PID
2728
kill $NOAUTH_PID

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ features = ["sync"]
6060
| `text-indexes-unstable` | Enables support for text indexes in explicit encryption. This feature is in preview and should be used for experimental workloads only. This feature is unstable and its security is not guaranteed until released as Generally Available (GA). The GA version of this feature may not be backwards compatible with the preview version. |
6161
| `error-backtrace` | Capture backtraces in `Error` values. This can be slow, memory intensive, and very verbose. |
6262
| `bson-3` | Use version 3.x of the `bson` crate; for backwards compatibility, without this feature enabled `bson` 2.x is used. |
63+
| `socks5-proxy` | Enable SOCKS5 proxy support. |
6364

6465
## Web Framework Examples
6566

driver/src/client/options/test.rs

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -218,11 +218,10 @@ async fn run_tests(path: &[&str], skipped_files: &[&str]) {
218218

219219
#[tokio::test]
220220
async fn run_uri_options_spec_tests() {
221-
let mut skipped_files = vec![
222-
"single-threaded-options.json",
223-
// TODO RUST-1054 unskip this file
224-
"proxy-options.json",
225-
];
221+
let mut skipped_files = vec!["single-threaded-options.json"];
222+
if cfg!(not(feature = "socks5-proxy")) {
223+
skipped_files.push("proxy-options.json");
224+
}
226225
if cfg!(not(feature = "gssapi-auth")) {
227226
skipped_files.push("auth-options.json");
228227
}

0 commit comments

Comments
 (0)