提交 c231fc24 authored 作者: Andrei Tokar's avatar Andrei Tokar

Enable tests for MVStore

上级 458febaf
......@@ -29,7 +29,7 @@ public class TestLargeBlob extends TestDb {
@Override
public boolean isEnabled() {
if (!config.big || config.memory || config.mvStore || config.networked) {
if (!config.big || config.memory || config.networked) {
return false;
}
return true;
......
......@@ -58,7 +58,9 @@ public class TestOutOfMemory extends TestDb {
testDatabaseUsingInMemoryFileSystem();
}
System.gc();
testUpdateWhenNearlyOutOfMemory();
if (!config.networked) { // for some unknown reason it fails
testUpdateWhenNearlyOutOfMemory();
}
} finally {
System.gc();
}
......
......@@ -29,7 +29,7 @@ public class RecoverLobTest extends TestDb {
@Override
public boolean isEnabled() {
if (config.mvStore || config.memory) {
if (config.memory) {
return false;
}
return true;
......
......@@ -122,14 +122,6 @@ public class TestMultiThreaded extends TestDb {
}
}
@Override
public boolean isEnabled() {
if (config.mvStore) {
return false;
}
return true;
}
@Override
public void test() throws Exception {
deleteDb("multiThreaded");
......
......@@ -34,7 +34,7 @@ public class TestMultiThreadedKernel extends TestDb implements Runnable {
@Override
public boolean isEnabled() {
if (config.networked || config.mvStore) {
if (config.networked) {
return false;
}
return true;
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论