diff options
author | Tommaso Tocci <tommaso.tocci@mongodb.com> | 2022-03-10 17:44:43 +0000 |
---|---|---|
committer | Evergreen Agent <no-reply@evergreen.mongodb.com> | 2022-03-10 19:19:03 +0000 |
commit | c0652d91db0fb5cc54f12811e100ec8108130112 (patch) | |
tree | 9935291004252e181f3c114ff8e771620af1347b | |
parent | b6e8c40bf59e1cbf89d963b76d15f4ad51cd280a (diff) | |
download | mongo-c0652d91db0fb5cc54f12811e100ec8108130112.tar.gz |
SERVER-60823 temporarly disable test from txn suites due to recursion issue
-rw-r--r-- | jstests/core/collection_truncate.js | 24 |
1 files changed, 14 insertions, 10 deletions
diff --git a/jstests/core/collection_truncate.js b/jstests/core/collection_truncate.js index 0a83f3ab55c..bc7b07f6ebc 100644 --- a/jstests/core/collection_truncate.js +++ b/jstests/core/collection_truncate.js @@ -1,13 +1,17 @@ -// @tags: [ -// requires_collstats, -// requires_non_retryable_commands, -// uses_testing_only_commands, -// requires_emptycapped, -// uses_full_validation, -// no_selinux, -// ] - -// SERVER-15033 truncate on a regular collection +/* + * SERVER-15033 truncate on a regular collection + * + * @tags: [ + * requires_collstats, + * requires_non_retryable_commands, + * uses_testing_only_commands, + * requires_emptycapped, + * uses_full_validation, + * no_selinux, + * # TODO SERVER-60823 re-add transaction support + * does_not_support_transactions, + * ] + */ (function() { 'use strict'; |