diff options
author | Mark Benvenuto <mark.benvenuto@mongodb.com> | 2019-06-18 00:19:33 -0400 |
---|---|---|
committer | Mark Benvenuto <mark.benvenuto@mongodb.com> | 2019-06-18 00:19:33 -0400 |
commit | c436b8090417baf847143e97f5d221285b1898e1 (patch) | |
tree | bb5369a793c8ec6646b20e92b1a0f85b7979682f /buildscripts | |
parent | 5eda33f9fa40a1a17f9f63f904a8c147700d648c (diff) | |
download | mongo-c436b8090417baf847143e97f5d221285b1898e1.tar.gz |
SERVER-41644 Expose explicit encryption helpers in community shell
Diffstat (limited to 'buildscripts')
-rw-r--r-- | buildscripts/resmokeconfig/suites/client_encrypt.yml | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/buildscripts/resmokeconfig/suites/client_encrypt.yml b/buildscripts/resmokeconfig/suites/client_encrypt.yml new file mode 100644 index 00000000000..4a06a017a34 --- /dev/null +++ b/buildscripts/resmokeconfig/suites/client_encrypt.yml @@ -0,0 +1,19 @@ +test_kind: js_test + +selector: + roots: + - jstests/client_encrypt/*.js + +executor: + config: + shell_options: + nodb: '' + readMode: commands + ssl: '' + tlsAllowInvalidHostnames: '' + tlsAllowInvalidCertificates: '' + tlsCAFile: jstests/libs/ca.pem + tlsCertificateKeyFile: jstests/libs/client.pem + hooks: + - class: CleanEveryN + n: 20 |