File tree Expand file tree Collapse file tree 3 files changed +4
-39
lines changed
src/test/spec/unified_runner Expand file tree Collapse file tree 3 files changed +4
-39
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -1307,11 +1307,9 @@ tasks:
1307
1307
1308
1308
- name : " test-gcp-kms"
1309
1309
commands :
1310
- - func : " build csfle expansions"
1311
1310
- func : " build and upload gcp kms test"
1312
1311
- func : " run gcp kms test"
1313
1312
1314
-
1315
1313
- name : test-ocsp-rsa-valid-cert-server-staples
1316
1314
tags : ["ocsp", "ocsp-rsa", "ocsp-staple"]
1317
1315
commands :
@@ -1916,10 +1914,12 @@ task_groups:
1916
1914
shell : " bash"
1917
1915
script : |
1918
1916
${PREPARE_SHELL}
1917
+ set +o xtrace
1919
1918
echo '${testgcpkms_key_file}' > /tmp/testgcpkms_key_file.json
1920
1919
export GCPKMS_KEYFILE=/tmp/testgcpkms_key_file.json
1921
1920
export GCPKMS_DRIVERS_TOOLS=$DRIVERS_TOOLS
1922
1921
export GCPKMS_SERVICEACCOUNT="${testgcpkms_service_account}"
1922
+ set -o xtrace
1923
1923
$DRIVERS_TOOLS/.evergreen/csfle/gcpkms/create-and-setup-instance.sh
1924
1924
- command : expansions.update
1925
1925
params :
@@ -1930,16 +1930,16 @@ task_groups:
1930
1930
shell : " bash"
1931
1931
script : |
1932
1932
${PREPARE_SHELL}
1933
+ set +o xtrace
1933
1934
export GCPKMS_GCLOUD=${GCPKMS_GCLOUD}
1934
1935
export GCPKMS_PROJECT=${GCPKMS_PROJECT}
1935
1936
export GCPKMS_ZONE=${GCPKMS_ZONE}
1936
1937
export GCPKMS_INSTANCENAME=${GCPKMS_INSTANCENAME}
1938
+ set -o xtrace
1937
1939
$DRIVERS_TOOLS/.evergreen/csfle/gcpkms/delete-instance.sh
1938
1940
tasks :
1939
1941
- test-gcp-kms
1940
1942
1941
-
1942
-
1943
1943
buildvariants :
1944
1944
-
1945
1945
matrix_name : " tests"
Original file line number Diff line number Diff line change @@ -118,14 +118,12 @@ async fn valid_pass() {
118
118
#[ cfg_attr( feature = "tokio-runtime" , tokio:: test( flavor = "multi_thread" ) ) ]
119
119
#[ cfg_attr( feature = "async-std-runtime" , async_std:: test) ]
120
120
async fn valid_fail ( ) {
121
- let _guard: RwLockWriteGuard < _ > = LOCK . run_exclusively ( ) . await ;
122
121
expect_failures ( & [ "unified-test-format" , "valid-fail" ] ) . await ;
123
122
}
124
123
125
124
#[ cfg_attr( feature = "tokio-runtime" , tokio:: test( flavor = "multi_thread" ) ) ]
126
125
#[ cfg_attr( feature = "async-std-runtime" , async_std:: test) ]
127
126
async fn invalid ( ) {
128
- let _guard: RwLockWriteGuard < _ > = LOCK . run_exclusively ( ) . await ;
129
127
expect_failures ( & [ "unified-test-format" , "invalid" ] ) . await ;
130
128
}
131
129
You can’t perform that action at this time.
0 commit comments