@@ -171,22 +171,13 @@ void C4ExpectException(C4ErrorDomain domain, int code, const std::function<void(
171171// / and closes & deletes it in tearDown. Also checks for leaks of classes that are InstanceCounted.
172172class C4Test {
173173 public:
174- enum TestOptions { RevTreeOption = 0 , VersionVectorOption, EncryptedRevTreeOption };
174+ enum TestOptions { VersionVectorOption = 0 , EncryptedVersionVectorOption };
175175#if defined(COUCHBASE_ENTERPRISE)
176- # if SkipVersionVectorTest
177- static constexpr int numberOfOptions = 2 ; // rev-tree, rev-tree encrypted
178- static constexpr const char * nameOfOption[numberOfOptions] = {" RevTree" , " EncryptedRevTree" };
179- # else
180- static constexpr int numberOfOptions = 3 ; // rev-tree, version vector, rev-tree encrypted
181- static constexpr const char * nameOfOption[numberOfOptions] = {" RevTree" , " VersionVector" , " EncryptedRevTree" };
182- # endif
176+ static constexpr int numberOfOptions = 2 ; // See nameOfOption
177+ static constexpr const char * nameOfOption[numberOfOptions] = {" VersionVector" , " EncryptedVersionVector" };
183178#else
184- # if SkipVersionVectorTest
185179 static constexpr int numberOfOptions = 1 ; // rev-tree
186- # else
187- static constexpr int numberOfOptions = 2 ; // rev-tree, version vector
188- # endif
189- static constexpr const char * nameOfOption[2 ] = {" RevTree" , " VersionVector" };
180+ static constexpr const char * nameOfOption[numberOfOptions] = {" VersionVector" };
190181#endif
191182
192183 static std::string sFixturesDir ; // directory where test files live
0 commit comments