diff options
author | Gregory Noma <gregory.noma@gmail.com> | 2021-06-09 11:44:35 -0400 |
---|---|---|
committer | Evergreen Agent <no-reply@evergreen.mongodb.com> | 2021-06-09 16:14:36 +0000 |
commit | dbe3c742ab28d914475fde9a63e10374d10261b1 (patch) | |
tree | bd2ac6e774edf656d50ebf053288bb2b6d8b82b2 | |
parent | f3e5e05277309a8394a33aef9303dfb7ff4c0a4a (diff) | |
download | mongo-dbe3c742ab28d914475fde9a63e10374d10261b1.tar.gz |
SERVER-57574 Temporarily disable create_view_does_not_take_database_X.js on Windows
-rw-r--r-- | jstests/noPassthrough/create_view_does_not_take_database_X.js | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/jstests/noPassthrough/create_view_does_not_take_database_X.js b/jstests/noPassthrough/create_view_does_not_take_database_X.js index 4b52178f336..c586b4d4922 100644 --- a/jstests/noPassthrough/create_view_does_not_take_database_X.js +++ b/jstests/noPassthrough/create_view_does_not_take_database_X.js @@ -7,6 +7,14 @@ (function() { "use strict"; +/** + * TODO (SERVER-57575): Re-enable test on Windows. + */ +if (_isWindows()) { + jsTestLog("Skipping test on Windows"); + return; +} + let rst = new ReplSetTest({nodes: 1}); rst.startSet(); rst.initiate(); |