Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
2a2a7b13
提交
2a2a7b13
authored
6月 16, 2018
作者:
Evgenij Ryazanov
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Remove TestAll.mvcc
上级
a9f52ea6
显示空白字符变更
内嵌
并排
正在显示
29 个修改的文件
包含
37 行增加
和
73 行删除
+37
-73
TestAll.java
h2/src/test/org/h2/test/TestAll.java
+0
-9
TestBase.java
h2/src/test/org/h2/test/TestBase.java
+0
-3
TestDeadlock.java
h2/src/test/org/h2/test/db/TestDeadlock.java
+4
-4
TestGeneralCommonTableQueries.java
...rc/test/org/h2/test/db/TestGeneralCommonTableQueries.java
+0
-1
TestLargeBlob.java
h2/src/test/org/h2/test/db/TestLargeBlob.java
+1
-1
TestLinkedTable.java
h2/src/test/org/h2/test/db/TestLinkedTable.java
+1
-4
TestLob.java
h2/src/test/org/h2/test/db/TestLob.java
+1
-1
TestMultiThread.java
h2/src/test/org/h2/test/db/TestMultiThread.java
+2
-2
TestMultiThreadedKernel.java
h2/src/test/org/h2/test/db/TestMultiThreadedKernel.java
+0
-3
TestOptimizations.java
h2/src/test/org/h2/test/db/TestOptimizations.java
+1
-1
TestSessionsLocks.java
h2/src/test/org/h2/test/db/TestSessionsLocks.java
+3
-3
TestSpatial.java
h2/src/test/org/h2/test/db/TestSpatial.java
+1
-4
TestTransaction.java
h2/src/test/org/h2/test/db/TestTransaction.java
+3
-3
TestTriggersConstraints.java
h2/src/test/org/h2/test/db/TestTriggersConstraints.java
+1
-1
TestUpgrade.java
h2/src/test/org/h2/test/db/TestUpgrade.java
+0
-1
TestUsingIndex.java
h2/src/test/org/h2/test/db/TestUsingIndex.java
+2
-8
TestMetaData.java
h2/src/test/org/h2/test/jdbc/TestMetaData.java
+1
-1
TestTransactionIsolation.java
h2/src/test/org/h2/test/jdbc/TestTransactionIsolation.java
+1
-1
TestMvcc1.java
h2/src/test/org/h2/test/mvcc/TestMvcc1.java
+1
-2
TestMvcc2.java
h2/src/test/org/h2/test/mvcc/TestMvcc2.java
+1
-2
TestMvcc3.java
h2/src/test/org/h2/test/mvcc/TestMvcc3.java
+5
-6
TestMvcc4.java
h2/src/test/org/h2/test/mvcc/TestMvcc4.java
+1
-2
TestMvccMultiThreaded.java
h2/src/test/org/h2/test/mvcc/TestMvccMultiThreaded.java
+1
-1
TestMvccMultiThreaded2.java
h2/src/test/org/h2/test/mvcc/TestMvccMultiThreaded2.java
+1
-2
TestCrashAPI.java
h2/src/test/org/h2/test/synth/TestCrashAPI.java
+2
-2
TestMultiThreaded.java
h2/src/test/org/h2/test/synth/TestMultiThreaded.java
+1
-1
TestReleaseSelectLock.java
h2/src/test/org/h2/test/synth/TestReleaseSelectLock.java
+0
-1
TestJmx.java
h2/src/test/org/h2/test/unit/TestJmx.java
+1
-2
TestMultiThreadedKernel.java
h2/src/test/org/h2/test/unit/TestMultiThreadedKernel.java
+1
-1
没有找到文件。
h2/src/test/org/h2/test/TestAll.java
浏览文件 @
2a2a7b13
...
...
@@ -308,11 +308,6 @@ java org.h2.test.TestAll timer
*/
public
boolean
codeCoverage
;
/**
* If the multi version concurrency control mode should be used.
*/
public
boolean
mvcc
=
mvStore
;
/**
* If the multi-threaded mode should be used.
*/
...
...
@@ -644,12 +639,10 @@ kill -9 `jps -l | grep "org.h2.test." | cut -d " " -f 1`
memory
=
false
;
multiThreaded
=
false
;
mvStore
=
false
;
mvcc
=
false
;
test
();
testUnit
();
mvStore
=
true
;
mvcc
=
true
;
memory
=
true
;
multiThreaded
=
false
;
networked
=
true
;
...
...
@@ -713,7 +706,6 @@ kill -9 `jps -l | grep "org.h2.test." | cut -d " " -f 1`
multiThreaded
=
false
;
mvStore
=
false
;
mvcc
=
false
;
test
();
// testUnit();
}
...
...
@@ -1130,7 +1122,6 @@ kill -9 `jps -l | grep "org.h2.test." | cut -d " " -f 1`
appendIf
(
buff
,
networked
,
"net"
);
appendIf
(
buff
,
memory
,
"memory"
);
appendIf
(
buff
,
codeCoverage
,
"codeCoverage"
);
appendIf
(
buff
,
mvcc
,
"mvcc"
);
appendIf
(
buff
,
multiThreaded
,
"multiThreaded"
);
appendIf
(
buff
,
cipher
!=
null
,
cipher
);
appendIf
(
buff
,
cacheType
!=
null
,
cacheType
);
...
...
h2/src/test/org/h2/test/TestBase.java
浏览文件 @
2a2a7b13
...
...
@@ -314,9 +314,6 @@ public abstract class TestBase {
// force operations to disk
url
=
addOption
(
url
,
"MAX_OPERATION_MEMORY"
,
"1"
);
}
if
(
config
.
mvcc
)
{
url
=
addOption
(
url
,
"MVCC"
,
"TRUE"
);
}
url
=
addOption
(
url
,
"MULTI_THREADED"
,
config
.
multiThreaded
?
"TRUE"
:
"FALSE"
);
if
(
config
.
lazy
)
{
url
=
addOption
(
url
,
"LAZY_QUERY_EXECUTION"
,
"1"
);
...
...
h2/src/test/org/h2/test/db/TestDeadlock.java
浏览文件 @
2a2a7b13
...
...
@@ -235,7 +235,7 @@ public class TestDeadlock extends TestBase {
}
private
void
testThreePhilosophers
()
throws
Exception
{
if
(
config
.
mv
cc
||
config
.
mv
Store
)
{
if
(
config
.
mvStore
)
{
return
;
}
initTest
();
...
...
@@ -281,7 +281,7 @@ public class TestDeadlock extends TestBase {
// test case for issue # 61
// http://code.google.com/p/h2database/issues/detail?id=61)
private
void
testThreeSome
()
throws
Exception
{
if
(
config
.
mv
cc
||
config
.
mv
Store
)
{
if
(
config
.
mvStore
)
{
return
;
}
initTest
();
...
...
@@ -326,7 +326,7 @@ public class TestDeadlock extends TestBase {
}
private
void
testLockUpgrade
()
throws
Exception
{
if
(
config
.
mv
cc
||
config
.
mv
Store
)
{
if
(
config
.
mvStore
)
{
return
;
}
initTest
();
...
...
@@ -360,7 +360,7 @@ public class TestDeadlock extends TestBase {
}
private
void
testDiningPhilosophers
()
throws
Exception
{
if
(
config
.
mv
cc
||
config
.
mv
Store
)
{
if
(
config
.
mvStore
)
{
return
;
}
initTest
();
...
...
h2/src/test/org/h2/test/db/TestGeneralCommonTableQueries.java
浏览文件 @
2a2a7b13
...
...
@@ -534,7 +534,6 @@ public class TestGeneralCommonTableQueries extends AbstractBaseForCommonTableExp
config
.
lazy
=
true
;
config
.
mvStore
=
true
;
config
.
memory
=
true
;
config
.
mvcc
=
true
;
config
.
multiThreaded
=
true
;
String
setupSQL
=
"--no config set"
;
...
...
h2/src/test/org/h2/test/db/TestLargeBlob.java
浏览文件 @
2a2a7b13
...
...
@@ -28,7 +28,7 @@ public class TestLargeBlob extends TestBase {
@Override
public
void
test
()
throws
Exception
{
if
(!
config
.
big
||
config
.
memory
||
config
.
mv
cc
||
config
.
networked
)
{
if
(!
config
.
big
||
config
.
memory
||
config
.
mv
Store
||
config
.
networked
)
{
return
;
}
...
...
h2/src/test/org/h2/test/db/TestLinkedTable.java
浏览文件 @
2a2a7b13
...
...
@@ -693,10 +693,7 @@ public class TestLinkedTable extends TestBase {
}
private
void
testGeometry
()
throws
SQLException
{
if
(!
config
.
mvStore
&&
config
.
mvcc
)
{
return
;
}
if
(
config
.
memory
&&
config
.
mvcc
)
{
if
(
config
.
memory
&&
config
.
mvStore
)
{
return
;
}
if
(
DataType
.
GEOMETRY_CLASS
==
null
)
{
...
...
h2/src/test/org/h2/test/db/TestLob.java
浏览文件 @
2a2a7b13
...
...
@@ -510,7 +510,7 @@ public class TestLob extends TestBase {
}
private
void
testDeadlock2
()
throws
Exception
{
if
(
config
.
mv
cc
||
config
.
memory
)
{
if
(
config
.
mv
Store
||
config
.
memory
)
{
return
;
}
deleteDb
(
"lob"
);
...
...
h2/src/test/org/h2/test/db/TestMultiThread.java
浏览文件 @
2a2a7b13
...
...
@@ -142,7 +142,7 @@ public class TestMultiThread extends TestBase implements Runnable {
}
private
void
testConcurrentView
()
throws
Exception
{
if
(
config
.
mv
cc
||
config
.
mv
Store
)
{
if
(
config
.
mvStore
)
{
return
;
}
String
db
=
getTestName
();
...
...
@@ -206,7 +206,7 @@ public class TestMultiThread extends TestBase implements Runnable {
}
private
void
testConcurrentAnalyze
()
throws
Exception
{
if
(
config
.
mv
cc
)
{
if
(
config
.
mv
Store
)
{
return
;
}
deleteDb
(
getTestName
());
...
...
h2/src/test/org/h2/test/db/TestMultiThreadedKernel.java
浏览文件 @
2a2a7b13
...
...
@@ -43,9 +43,6 @@ public class TestMultiThreadedKernel extends TestBase {
@Override
public
void
test
()
throws
Exception
{
if
(
config
.
mvcc
)
{
return
;
}
if
(
config
.
mvStore
)
{
// FIXME can't see why test should not work in MVStore mode
return
;
}
...
...
h2/src/test/org/h2/test/db/TestOptimizations.java
浏览文件 @
2a2a7b13
...
...
@@ -659,7 +659,7 @@ public class TestOptimizations extends TestBase {
ResultSet
rs
=
stat
.
executeQuery
(
"explain select min(x), max(x) from test"
);
rs
.
next
();
if
(!
config
.
mv
cc
)
{
if
(!
config
.
mv
Store
)
{
String
plan
=
rs
.
getString
(
1
);
assertContains
(
plan
,
"direct"
);
}
...
...
h2/src/test/org/h2/test/db/TestSessionsLocks.java
浏览文件 @
2a2a7b13
...
...
@@ -31,7 +31,7 @@ public class TestSessionsLocks extends TestBase {
return
;
}
testCancelStatement
();
if
(!
config
.
mv
cc
)
{
if
(!
config
.
mv
Store
)
{
testLocks
();
}
deleteDb
(
"sessionsLocks"
);
...
...
@@ -56,7 +56,7 @@ public class TestSessionsLocks extends TestBase {
assertEquals
(
"PUBLIC"
,
rs
.
getString
(
"TABLE_SCHEMA"
));
assertEquals
(
"TEST"
,
rs
.
getString
(
"TABLE_NAME"
));
rs
.
getString
(
"SESSION_ID"
);
if
(
config
.
mv
cc
||
config
.
mv
Store
)
{
if
(
config
.
mvStore
)
{
assertEquals
(
"READ"
,
rs
.
getString
(
"LOCK_TYPE"
));
}
else
{
assertEquals
(
"WRITE"
,
rs
.
getString
(
"LOCK_TYPE"
));
...
...
@@ -67,7 +67,7 @@ public class TestSessionsLocks extends TestBase {
stat2
.
execute
(
"SELECT * FROM TEST"
);
rs
=
stat
.
executeQuery
(
"select * from information_schema.locks "
+
"order by session_id"
);
if
(!
config
.
mv
cc
&&
!
config
.
mv
Store
)
{
if
(!
config
.
mvStore
)
{
rs
.
next
();
assertEquals
(
"PUBLIC"
,
rs
.
getString
(
"TABLE_SCHEMA"
));
assertEquals
(
"TEST"
,
rs
.
getString
(
"TABLE_NAME"
));
...
...
h2/src/test/org/h2/test/db/TestSpatial.java
浏览文件 @
2a2a7b13
...
...
@@ -53,10 +53,7 @@ public class TestSpatial extends TestBase {
@Override
public
void
test
()
throws
SQLException
{
if
(!
config
.
mvStore
&&
config
.
mvcc
)
{
return
;
}
if
(
config
.
memory
&&
config
.
mvcc
)
{
if
(
config
.
memory
&&
config
.
mvStore
)
{
return
;
}
if
(
DataType
.
GEOMETRY_CLASS
!=
null
)
{
...
...
h2/src/test/org/h2/test/db/TestTransaction.java
浏览文件 @
2a2a7b13
...
...
@@ -85,7 +85,7 @@ public class TestTransaction extends TestBase {
conn
.
setAutoCommit
(
false
);
ResultSet
rs
;
if
(
config
.
mv
cc
||
config
.
mv
Store
)
{
if
(
config
.
mvStore
)
{
rs
=
stat2
.
executeQuery
(
"select count(*) from test"
);
rs
.
next
();
assertEquals
(
0
,
rs
.
getInt
(
1
));
...
...
@@ -187,7 +187,7 @@ public class TestTransaction extends TestBase {
Connection
conn2
=
getConnection
(
"transaction"
);
conn2
.
setAutoCommit
(
false
);
Statement
stat2
=
conn2
.
createStatement
();
if
(
config
.
mv
cc
)
{
if
(
config
.
mv
Store
)
{
stat2
.
execute
(
"update test set name = 'Welt' where id = 2"
);
}
assertThrows
(
ErrorCode
.
LOCK_TIMEOUT_1
,
stat2
).
...
...
@@ -321,7 +321,7 @@ public class TestTransaction extends TestBase {
c2
.
setAutoCommit
(
false
);
s1
.
executeUpdate
(
"insert into A(code) values('one')"
);
Statement
s2
=
c2
.
createStatement
();
if
(
config
.
mv
cc
||
config
.
mv
Store
)
{
if
(
config
.
mvStore
)
{
assertThrows
(
ErrorCode
.
REFERENTIAL_INTEGRITY_VIOLATED_PARENT_MISSING_1
,
s2
).
executeUpdate
(
"insert into B values('two', 1)"
);
...
...
h2/src/test/org/h2/test/db/TestTriggersConstraints.java
浏览文件 @
2a2a7b13
...
...
@@ -111,7 +111,7 @@ public class TestTriggersConstraints extends TestBase implements Trigger {
}
private
void
testDeleteInTrigger
()
throws
SQLException
{
if
(
config
.
mv
cc
||
config
.
mv
Store
)
{
if
(
config
.
mvStore
)
{
return
;
}
Connection
conn
;
...
...
h2/src/test/org/h2/test/db/TestUpgrade.java
浏览文件 @
2a2a7b13
...
...
@@ -29,7 +29,6 @@ public class TestUpgrade extends TestBase {
*/
public
static
void
main
(
String
...
a
)
throws
Exception
{
TestBase
base
=
TestBase
.
createCaller
().
init
();
base
.
config
.
mvcc
=
false
;
base
.
config
.
mvStore
=
false
;
base
.
test
();
}
...
...
h2/src/test/org/h2/test/db/TestUsingIndex.java
浏览文件 @
2a2a7b13
...
...
@@ -111,10 +111,7 @@ public class TestUsingIndex extends TestBase {
}
private
void
testSpatialIndex
()
throws
SQLException
{
if
(!
config
.
mvStore
&&
config
.
mvcc
)
{
return
;
}
if
(
config
.
memory
&&
config
.
mvcc
)
{
if
(
config
.
memory
&&
config
.
mvStore
)
{
return
;
}
if
(
DataType
.
GEOMETRY_CLASS
==
null
)
{
...
...
@@ -147,10 +144,7 @@ public class TestUsingIndex extends TestBase {
}
private
void
testBadSpatialSyntax
()
throws
SQLException
{
if
(!
config
.
mvStore
&&
config
.
mvcc
)
{
return
;
}
if
(
config
.
memory
&&
config
.
mvcc
)
{
if
(
config
.
memory
&&
config
.
mvStore
)
{
return
;
}
if
(
DataType
.
GEOMETRY_CLASS
==
null
)
{
...
...
h2/src/test/org/h2/test/jdbc/TestMetaData.java
浏览文件 @
2a2a7b13
...
...
@@ -1271,7 +1271,7 @@ public class TestMetaData extends TestBase {
}
private
void
testSessionsUncommitted
()
throws
SQLException
{
if
(
config
.
mv
cc
||
config
.
memory
)
{
if
(
config
.
mv
Store
||
config
.
memory
)
{
return
;
}
Connection
conn
=
getConnection
(
"metaData"
);
...
...
h2/src/test/org/h2/test/jdbc/TestTransactionIsolation.java
浏览文件 @
2a2a7b13
...
...
@@ -28,7 +28,7 @@ public class TestTransactionIsolation extends TestBase {
@Override
public
void
test
()
throws
SQLException
{
if
(
config
.
mv
cc
||
config
.
mv
Store
)
{
if
(
config
.
mvStore
)
{
// no tests yet
}
else
{
testTableLevelLocking
();
...
...
h2/src/test/org/h2/test/mvcc/TestMvcc1.java
浏览文件 @
2a2a7b13
...
...
@@ -30,7 +30,6 @@ public class TestMvcc1 extends TestBase {
*/
public
static
void
main
(
String
...
a
)
throws
Exception
{
TestBase
test
=
TestBase
.
createCaller
().
init
();
test
.
config
.
mvcc
=
true
;
test
.
test
();
}
...
...
@@ -59,7 +58,7 @@ public class TestMvcc1 extends TestBase {
}
private
void
testCases
()
throws
SQLException
{
if
(!
config
.
mv
cc
)
{
if
(!
config
.
mv
Store
)
{
return
;
}
ResultSet
rs
;
...
...
h2/src/test/org/h2/test/mvcc/TestMvcc2.java
浏览文件 @
2a2a7b13
...
...
@@ -34,13 +34,12 @@ public class TestMvcc2 extends TestBase {
*/
public
static
void
main
(
String
...
a
)
throws
Exception
{
TestBase
test
=
TestBase
.
createCaller
().
init
();
test
.
config
.
mvcc
=
true
;
test
.
test
();
}
@Override
public
void
test
()
throws
Exception
{
if
(!
config
.
mv
cc
)
{
if
(!
config
.
mv
Store
)
{
return
;
}
deleteDb
(
"mvcc2"
);
...
...
h2/src/test/org/h2/test/mvcc/TestMvcc3.java
浏览文件 @
2a2a7b13
...
...
@@ -26,7 +26,6 @@ public class TestMvcc3 extends TestBase {
*/
public
static
void
main
(
String
...
a
)
throws
Exception
{
TestBase
test
=
TestBase
.
createCaller
().
init
();
test
.
config
.
mvcc
=
true
;
test
.
test
();
}
...
...
@@ -63,7 +62,7 @@ public class TestMvcc3 extends TestBase {
}
private
void
testConcurrentUpdate
()
throws
SQLException
{
if
(!
config
.
mv
cc
)
{
if
(!
config
.
mv
Store
)
{
return
;
}
deleteDb
(
"mvcc3"
);
...
...
@@ -102,7 +101,7 @@ public class TestMvcc3 extends TestBase {
}
private
void
testInsertUpdateRollback
()
throws
SQLException
{
if
(!
config
.
mv
cc
)
{
if
(!
config
.
mv
Store
)
{
return
;
}
...
...
@@ -147,7 +146,7 @@ public class TestMvcc3 extends TestBase {
}
private
void
testCreateTableAsSelect
()
throws
SQLException
{
if
(!
config
.
mv
cc
)
{
if
(!
config
.
mv
Store
)
{
return
;
}
deleteDb
(
"mvcc3"
);
...
...
@@ -165,7 +164,7 @@ public class TestMvcc3 extends TestBase {
}
private
void
testRollback
()
throws
SQLException
{
if
(!
config
.
mv
cc
)
{
if
(!
config
.
mv
Store
)
{
return
;
}
...
...
@@ -218,7 +217,7 @@ public class TestMvcc3 extends TestBase {
}
private
void
testDisableAutoCommit
()
throws
SQLException
{
if
(!
config
.
mv
cc
)
{
if
(!
config
.
mv
Store
)
{
return
;
}
deleteDb
(
"mvcc3"
);
...
...
h2/src/test/org/h2/test/mvcc/TestMvcc4.java
浏览文件 @
2a2a7b13
...
...
@@ -26,7 +26,6 @@ public class TestMvcc4 extends TestBase {
*/
public
static
void
main
(
String
...
a
)
throws
Exception
{
TestBase
test
=
TestBase
.
createCaller
().
init
();
test
.
config
.
mvcc
=
true
;
test
.
config
.
lockTimeout
=
20000
;
test
.
config
.
memory
=
true
;
test
.
test
();
...
...
@@ -34,7 +33,7 @@ public class TestMvcc4 extends TestBase {
@Override
public
void
test
()
throws
SQLException
{
if
(
config
.
networked
||
!
config
.
mv
cc
)
{
if
(
config
.
networked
||
!
config
.
mv
Store
)
{
return
;
}
testSelectForUpdateAndUpdateConcurrency
();
...
...
h2/src/test/org/h2/test/mvcc/TestMvccMultiThreaded.java
浏览文件 @
2a2a7b13
...
...
@@ -30,7 +30,7 @@ public class TestMvccMultiThreaded extends TestBase {
@Override
public
void
test
()
throws
Exception
{
if
(!
config
.
mv
cc
)
{
if
(!
config
.
mv
Store
)
{
return
;
}
testConcurrentSelectForUpdate
();
...
...
h2/src/test/org/h2/test/mvcc/TestMvccMultiThreaded2.java
浏览文件 @
2a2a7b13
...
...
@@ -33,7 +33,6 @@ public class TestMvccMultiThreaded2 extends TestBase {
*/
public
static
void
main
(
String
...
a
)
throws
Exception
{
TestBase
test
=
TestBase
.
createCaller
().
init
();
test
.
config
.
mvcc
=
true
;
test
.
config
.
lockTimeout
=
120000
;
test
.
config
.
memory
=
true
;
test
.
config
.
multiThreaded
=
true
;
...
...
@@ -47,7 +46,7 @@ public class TestMvccMultiThreaded2 extends TestBase {
@Override
public
void
test
()
throws
SQLException
,
InterruptedException
{
if
(!
config
.
mv
cc
)
{
if
(!
config
.
mv
Store
)
{
return
;
}
testSelectForUpdateConcurrency
();
...
...
h2/src/test/org/h2/test/synth/TestCrashAPI.java
浏览文件 @
2a2a7b13
...
...
@@ -154,7 +154,7 @@ public class TestCrashAPI extends TestBase implements Runnable {
recoverAll
();
return
;
}
if
(
config
.
mv
cc
||
config
.
networked
)
{
if
(
config
.
mv
Store
||
config
.
networked
)
{
return
;
}
int
len
=
getSize
(
2
,
6
);
...
...
@@ -531,7 +531,7 @@ public class TestCrashAPI extends TestBase implements Runnable {
@Override
public
TestBase
init
(
TestAll
conf
)
throws
Exception
{
super
.
init
(
conf
);
if
(
config
.
mv
cc
||
config
.
networked
)
{
if
(
config
.
mv
Store
||
config
.
networked
)
{
return
this
;
}
startServerIfRequired
();
...
...
h2/src/test/org/h2/test/synth/TestMultiThreaded.java
浏览文件 @
2a2a7b13
...
...
@@ -123,7 +123,7 @@ public class TestMultiThreaded extends TestBase {
@Override
public
void
test
()
throws
Exception
{
if
(
config
.
mv
cc
)
{
if
(
config
.
mv
Store
)
{
return
;
}
deleteDb
(
"multiThreaded"
);
...
...
h2/src/test/org/h2/test/synth/TestReleaseSelectLock.java
浏览文件 @
2a2a7b13
...
...
@@ -27,7 +27,6 @@ public class TestReleaseSelectLock extends TestBase {
public
static
void
main
(
String
...
a
)
throws
Exception
{
TestBase
test
=
TestBase
.
createCaller
().
init
();
test
.
config
.
mvStore
=
false
;
test
.
config
.
mvcc
=
false
;
test
.
config
.
multiThreaded
=
true
;
test
.
test
();
}
...
...
h2/src/test/org/h2/test/unit/TestJmx.java
浏览文件 @
2a2a7b13
...
...
@@ -33,7 +33,6 @@ public class TestJmx extends TestBase {
public
static
void
main
(
String
...
a
)
throws
Exception
{
TestBase
base
=
TestBase
.
createCaller
().
init
();
base
.
config
.
mvStore
=
false
;
base
.
config
.
mvcc
=
false
;
base
.
test
();
}
...
...
@@ -114,7 +113,7 @@ public class TestJmx extends TestBase {
result
=
mbeanServer
.
invoke
(
name
,
"listSessions"
,
null
,
null
).
toString
();
assertContains
(
result
,
"session id"
);
if
(
config
.
mv
cc
||
config
.
mv
Store
)
{
if
(
config
.
mvStore
)
{
assertContains
(
result
,
"read lock"
);
}
else
{
assertContains
(
result
,
"write lock"
);
...
...
h2/src/test/org/h2/test/unit/TestMultiThreadedKernel.java
浏览文件 @
2a2a7b13
...
...
@@ -33,7 +33,7 @@ public class TestMultiThreadedKernel extends TestBase implements Runnable {
@Override
public
void
test
()
throws
Exception
{
if
(
config
.
networked
||
config
.
mv
cc
)
{
if
(
config
.
networked
||
config
.
mv
Store
)
{
return
;
}
deleteDb
(
"multiThreadedKernel"
);
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论