提交 997651be authored 作者: Noel Grandin's avatar Noel Grandin

fix test in multithreaded mode

上级 ed501cd4
...@@ -578,8 +578,10 @@ public class TestMetaData extends TestBase { ...@@ -578,8 +578,10 @@ public class TestMetaData extends TestBase {
Connection.TRANSACTION_NONE)); Connection.TRANSACTION_NONE));
assertTrue(meta.supportsTransactionIsolationLevel( assertTrue(meta.supportsTransactionIsolationLevel(
Connection.TRANSACTION_READ_COMMITTED)); Connection.TRANSACTION_READ_COMMITTED));
assertTrue(meta.supportsTransactionIsolationLevel( if (!config.multiThreaded) {
Connection.TRANSACTION_READ_UNCOMMITTED)); assertTrue(meta.supportsTransactionIsolationLevel(
Connection.TRANSACTION_READ_UNCOMMITTED));
}
assertTrue(meta.supportsTransactionIsolationLevel( assertTrue(meta.supportsTransactionIsolationLevel(
Connection.TRANSACTION_REPEATABLE_READ)); Connection.TRANSACTION_REPEATABLE_READ));
assertTrue(meta.supportsTransactionIsolationLevel( assertTrue(meta.supportsTransactionIsolationLevel(
......
...@@ -127,7 +127,7 @@ public class TestMvcc4 extends TestBase { ...@@ -127,7 +127,7 @@ public class TestMvcc4 extends TestBase {
* *
* @param t the thread * @param t the thread
*/ */
static void waitForThreadToBlockOnDB(Thread t) { void waitForThreadToBlockOnDB(Thread t) {
while (true) { while (true) {
// sleep the first time through the loop so we give the main thread a chance // sleep the first time through the loop so we give the main thread a chance
try { try {
...@@ -141,7 +141,7 @@ public class TestMvcc4 extends TestBase { ...@@ -141,7 +141,7 @@ public class TestMvcc4 extends TestBase {
StackTraceElement[] elements = threadMap.get(t); StackTraceElement[] elements = threadMap.get(t);
if (elements != null if (elements != null
&& elements.length > 1 && elements.length > 1
&& "wait".equals(elements[0].getMethodName()) && (config.multiThreaded ? "sleep".equals(elements[0].getMethodName()) : "wait".equals(elements[0].getMethodName()))
&& "filterConcurrentUpdate".equals(elements[1].getMethodName())) { && "filterConcurrentUpdate".equals(elements[1].getMethodName())) {
return; return;
} }
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论