Skip to content

Commit 7b6161a

Browse files
cleanup
1 parent e549abe commit 7b6161a

File tree

3 files changed

+4
-39
lines changed

3 files changed

+4
-39
lines changed

.evergreen/build-and-upload-gcp-kms-test.sh

Lines changed: 0 additions & 33 deletions
This file was deleted.

.evergreen/config.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1307,11 +1307,9 @@ tasks:
13071307

13081308
- name: "test-gcp-kms"
13091309
commands:
1310-
- func: "build csfle expansions"
13111310
- func: "build and upload gcp kms test"
13121311
- func: "run gcp kms test"
13131312

1314-
13151313
- name: test-ocsp-rsa-valid-cert-server-staples
13161314
tags: ["ocsp", "ocsp-rsa", "ocsp-staple"]
13171315
commands:
@@ -1916,10 +1914,12 @@ task_groups:
19161914
shell: "bash"
19171915
script: |
19181916
${PREPARE_SHELL}
1917+
set +o xtrace
19191918
echo '${testgcpkms_key_file}' > /tmp/testgcpkms_key_file.json
19201919
export GCPKMS_KEYFILE=/tmp/testgcpkms_key_file.json
19211920
export GCPKMS_DRIVERS_TOOLS=$DRIVERS_TOOLS
19221921
export GCPKMS_SERVICEACCOUNT="${testgcpkms_service_account}"
1922+
set -o xtrace
19231923
$DRIVERS_TOOLS/.evergreen/csfle/gcpkms/create-and-setup-instance.sh
19241924
- command: expansions.update
19251925
params:
@@ -1930,16 +1930,16 @@ task_groups:
19301930
shell: "bash"
19311931
script: |
19321932
${PREPARE_SHELL}
1933+
set +o xtrace
19331934
export GCPKMS_GCLOUD=${GCPKMS_GCLOUD}
19341935
export GCPKMS_PROJECT=${GCPKMS_PROJECT}
19351936
export GCPKMS_ZONE=${GCPKMS_ZONE}
19361937
export GCPKMS_INSTANCENAME=${GCPKMS_INSTANCENAME}
1938+
set -o xtrace
19371939
$DRIVERS_TOOLS/.evergreen/csfle/gcpkms/delete-instance.sh
19381940
tasks:
19391941
- test-gcp-kms
19401942

1941-
1942-
19431943
buildvariants:
19441944
-
19451945
matrix_name: "tests"

src/test/spec/unified_runner/mod.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -118,14 +118,12 @@ async fn valid_pass() {
118118
#[cfg_attr(feature = "tokio-runtime", tokio::test(flavor = "multi_thread"))]
119119
#[cfg_attr(feature = "async-std-runtime", async_std::test)]
120120
async fn valid_fail() {
121-
let _guard: RwLockWriteGuard<_> = LOCK.run_exclusively().await;
122121
expect_failures(&["unified-test-format", "valid-fail"]).await;
123122
}
124123

125124
#[cfg_attr(feature = "tokio-runtime", tokio::test(flavor = "multi_thread"))]
126125
#[cfg_attr(feature = "async-std-runtime", async_std::test)]
127126
async fn invalid() {
128-
let _guard: RwLockWriteGuard<_> = LOCK.run_exclusively().await;
129127
expect_failures(&["unified-test-format", "invalid"]).await;
130128
}
131129

0 commit comments

Comments
 (0)