Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
5508d260
提交
5508d260
authored
9月 06, 2017
作者:
Noel Grandin
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
some basic support for running the vmlens race-condition tool
上级
3e65f279
隐藏空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
19 行增加
和
2 行删除
+19
-2
TestAll.java
h2/src/test/org/h2/test/TestAll.java
+15
-2
TestOutOfMemory.java
h2/src/test/org/h2/test/db/TestOutOfMemory.java
+4
-0
没有找到文件。
h2/src/test/org/h2/test/TestAll.java
浏览文件 @
5508d260
...
@@ -365,6 +365,11 @@ java org.h2.test.TestAll timer
...
@@ -365,6 +365,11 @@ java org.h2.test.TestAll timer
*/
*/
public
boolean
travis
;
public
boolean
travis
;
/**
* the vmlens.com race condition tool
*/
public
boolean
vmlens
;
/**
/**
* The lock timeout to use
* The lock timeout to use
*/
*/
...
@@ -506,6 +511,9 @@ kill -9 `jps -l | grep "org.h2.test." | cut -d " " -f 1`
...
@@ -506,6 +511,9 @@ kill -9 `jps -l | grep "org.h2.test." | cut -d " " -f 1`
if
(
"travis"
.
equals
(
args
[
0
]))
{
if
(
"travis"
.
equals
(
args
[
0
]))
{
test
.
travis
=
true
;
test
.
travis
=
true
;
test
.
testAll
();
test
.
testAll
();
}
else
if
(
"vmlens"
.
equals
(
args
[
0
]))
{
test
.
vmlens
=
true
;
test
.
testAll
();
}
else
if
(
"reopen"
.
equals
(
args
[
0
]))
{
}
else
if
(
"reopen"
.
equals
(
args
[
0
]))
{
System
.
setProperty
(
"h2.delayWrongPasswordMin"
,
"0"
);
System
.
setProperty
(
"h2.delayWrongPasswordMin"
,
"0"
);
System
.
setProperty
(
"h2.check2"
,
"false"
);
System
.
setProperty
(
"h2.check2"
,
"false"
);
...
@@ -554,7 +562,7 @@ kill -9 `jps -l | grep "org.h2.test." | cut -d " " -f 1`
...
@@ -554,7 +562,7 @@ kill -9 `jps -l | grep "org.h2.test." | cut -d " " -f 1`
private
void
testAll
()
throws
Exception
{
private
void
testAll
()
throws
Exception
{
runTests
();
runTests
();
if
(!
travis
)
{
if
(!
travis
&&
!
vmlens
)
{
Profiler
prof
=
new
Profiler
();
Profiler
prof
=
new
Profiler
();
prof
.
depth
=
16
;
prof
.
depth
=
16
;
prof
.
interval
=
1
;
prof
.
interval
=
1
;
...
@@ -614,6 +622,9 @@ kill -9 `jps -l | grep "org.h2.test." | cut -d " " -f 1`
...
@@ -614,6 +622,9 @@ kill -9 `jps -l | grep "org.h2.test." | cut -d " " -f 1`
memory
=
true
;
memory
=
true
;
multiThreaded
=
true
;
multiThreaded
=
true
;
test
();
test
();
if
(
vmlens
)
{
return
;
}
testUnit
();
testUnit
();
// lazy
// lazy
...
@@ -681,7 +692,6 @@ kill -9 `jps -l | grep "org.h2.test." | cut -d " " -f 1`
...
@@ -681,7 +692,6 @@ kill -9 `jps -l | grep "org.h2.test." | cut -d " " -f 1`
cipher
=
null
;
cipher
=
null
;
test
();
test
();
}
}
}
}
/**
/**
...
@@ -722,6 +732,9 @@ kill -9 `jps -l | grep "org.h2.test." | cut -d " " -f 1`
...
@@ -722,6 +732,9 @@ kill -9 `jps -l | grep "org.h2.test." | cut -d " " -f 1`
addTest
(
new
TestCompatibilityOracle
());
addTest
(
new
TestCompatibilityOracle
());
addTest
(
new
TestCsv
());
addTest
(
new
TestCsv
());
addTest
(
new
TestDeadlock
());
addTest
(
new
TestDeadlock
());
if
(
vmlens
)
{
return
;
}
addTest
(
new
TestDrop
());
addTest
(
new
TestDrop
());
addTest
(
new
TestDuplicateKeyUpdate
());
addTest
(
new
TestDuplicateKeyUpdate
());
addTest
(
new
TestEncryptedDb
());
addTest
(
new
TestEncryptedDb
());
...
...
h2/src/test/org/h2/test/db/TestOutOfMemory.java
浏览文件 @
5508d260
...
@@ -41,6 +41,10 @@ public class TestOutOfMemory extends TestBase {
...
@@ -41,6 +41,10 @@ public class TestOutOfMemory extends TestBase {
// fails regularly under Travis, not sure why
// fails regularly under Travis, not sure why
return
;
return
;
}
}
if
(
config
.
vmlens
)
{
// running out of memory will cause the vmlens agent to stop working
return
;
}
try
{
try
{
System
.
gc
();
System
.
gc
();
testMVStoreUsingInMemoryFileSystem
();
testMVStoreUsingInMemoryFileSystem
();
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论