Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
8c29fb53
提交
8c29fb53
authored
9 年前
作者:
Thomas Mueller
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Java 8 compatibility for tests
上级
e0b3be30
无相关合并请求
显示空白字符变更
内嵌
并排
正在显示
4 个修改的文件
包含
40 行增加
和
19 行删除
+40
-19
.gitignore
h2/.gitignore
+1
-0
TestAll.java
h2/src/test/org/h2/test/TestAll.java
+32
-18
TestPageStore.java
h2/src/test/org/h2/test/unit/TestPageStore.java
+1
-1
TestTools.java
h2/src/test/org/h2/test/unit/TestTools.java
+6
-0
没有找到文件。
h2/.gitignore
浏览文件 @
8c29fb53
.classpath
.classpath
.project
.project
bin
bin
data
docs
docs
ext
ext
error.*
error.*
...
...
This diff is collapsed.
Click to expand it.
h2/src/test/org/h2/test/TestAll.java
浏览文件 @
8c29fb53
...
@@ -372,6 +372,8 @@ java org.h2.test.TestAll timer
...
@@ -372,6 +372,8 @@ java org.h2.test.TestAll timer
private
Server
server
;
private
Server
server
;
private
boolean
fast
;
/**
/**
* Run all tests.
* Run all tests.
*
*
...
@@ -436,7 +438,10 @@ kill -9 `jps -l | grep "org.h2.test." | cut -d " " -f 1`
...
@@ -436,7 +438,10 @@ kill -9 `jps -l | grep "org.h2.test." | cut -d " " -f 1`
*/
*/
TestAll
test
=
new
TestAll
();
TestAll
test
=
new
TestAll
();
if
(
args
.
length
>
0
)
{
if
(
args
.
length
>
0
)
{
if
(
"reopen"
.
equals
(
args
[
0
]))
{
if
(
"fast"
.
equals
(
args
[
0
]))
{
test
.
fast
=
true
;
test
.
testAll
();
}
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"
);
System
.
setProperty
(
"h2.analyzeAuto"
,
"100"
);
System
.
setProperty
(
"h2.analyzeAuto"
,
"100"
);
...
@@ -476,7 +481,14 @@ kill -9 `jps -l | grep "org.h2.test." | cut -d " " -f 1`
...
@@ -476,7 +481,14 @@ kill -9 `jps -l | grep "org.h2.test." | cut -d " " -f 1`
new
TestTimer
().
runTest
(
test
);
new
TestTimer
().
runTest
(
test
);
}
}
}
else
{
}
else
{
test
.
runTests
();
test
.
testAll
();
}
System
.
out
.
println
(
TestBase
.
formatTime
(
System
.
currentTimeMillis
()
-
time
)
+
" total"
);
}
private
void
testAll
()
throws
Exception
{
runTests
();
Profiler
prof
=
new
Profiler
();
Profiler
prof
=
new
Profiler
();
prof
.
depth
=
16
;
prof
.
depth
=
16
;
prof
.
interval
=
1
;
prof
.
interval
=
1
;
...
@@ -486,9 +498,6 @@ kill -9 `jps -l | grep "org.h2.test." | cut -d " " -f 1`
...
@@ -486,9 +498,6 @@ kill -9 `jps -l | grep "org.h2.test." | cut -d " " -f 1`
System
.
out
.
println
(
prof
.
getTop
(
5
));
System
.
out
.
println
(
prof
.
getTop
(
5
));
TestPerformance
.
main
(
"-init"
,
"-db"
,
"1"
,
"-size"
,
"1000"
);
TestPerformance
.
main
(
"-init"
,
"-db"
,
"1"
,
"-size"
,
"1000"
);
}
}
System
.
out
.
println
(
TestBase
.
formatTime
(
System
.
currentTimeMillis
()
-
time
)
+
" total"
);
}
/**
/**
* Run all tests in all possible combinations.
* Run all tests in all possible combinations.
...
@@ -564,10 +573,13 @@ kill -9 `jps -l | grep "org.h2.test." | cut -d " " -f 1`
...
@@ -564,10 +573,13 @@ kill -9 `jps -l | grep "org.h2.test." | cut -d " " -f 1`
traceLevelFile
=
0
;
traceLevelFile
=
0
;
smallLog
=
true
;
smallLog
=
true
;
networked
=
true
;
networked
=
true
;
if
(!
fast
)
{
ssl
=
true
;
ssl
=
true
;
}
defrag
=
false
;
defrag
=
false
;
test
();
test
();
if
(!
fast
)
{
big
=
true
;
big
=
true
;
smallLog
=
false
;
smallLog
=
false
;
networked
=
false
;
networked
=
false
;
...
@@ -575,6 +587,7 @@ kill -9 `jps -l | grep "org.h2.test." | cut -d " " -f 1`
...
@@ -575,6 +587,7 @@ kill -9 `jps -l | grep "org.h2.test." | cut -d " " -f 1`
traceLevelFile
=
0
;
traceLevelFile
=
0
;
test
();
test
();
testUnit
();
testUnit
();
}
big
=
false
;
big
=
false
;
cipher
=
"AES"
;
cipher
=
"AES"
;
...
@@ -892,6 +905,7 @@ kill -9 `jps -l | grep "org.h2.test." | cut -d " " -f 1`
...
@@ -892,6 +905,7 @@ kill -9 `jps -l | grep "org.h2.test." | cut -d " " -f 1`
@Override
@Override
public
String
toString
()
{
public
String
toString
()
{
StringBuilder
buff
=
new
StringBuilder
();
StringBuilder
buff
=
new
StringBuilder
();
appendIf
(
buff
,
fast
,
"fast"
);
appendIf
(
buff
,
mvStore
,
"mvStore"
);
appendIf
(
buff
,
mvStore
,
"mvStore"
);
appendIf
(
buff
,
big
,
"big"
);
appendIf
(
buff
,
big
,
"big"
);
appendIf
(
buff
,
networked
,
"net"
);
appendIf
(
buff
,
networked
,
"net"
);
...
...
This diff is collapsed.
Click to expand it.
h2/src/test/org/h2/test/unit/TestPageStore.java
浏览文件 @
8c29fb53
...
@@ -307,7 +307,7 @@ public class TestPageStore extends TestBase {
...
@@ -307,7 +307,7 @@ public class TestPageStore extends TestBase {
stat
.
execute
(
"select nextval('SEQ') from system_range(1, 100000)"
);
stat
.
execute
(
"select nextval('SEQ') from system_range(1, 100000)"
);
long
after
=
System
.
currentTimeMillis
();
long
after
=
System
.
currentTimeMillis
();
// it's hard to test - basically it shouldn't checkpoint too often
// it's hard to test - basically it shouldn't checkpoint too often
if
(
after
-
before
>
1
0000
)
{
if
(
after
-
before
>
2
0000
)
{
if
(!
config
.
reopen
)
{
if
(!
config
.
reopen
)
{
fail
(
"Checkpoint took "
+
(
after
-
before
)
+
" ms"
);
fail
(
"Checkpoint took "
+
(
after
-
before
)
+
" ms"
);
}
}
...
...
This diff is collapsed.
Click to expand it.
h2/src/test/org/h2/test/unit/TestTools.java
浏览文件 @
8c29fb53
...
@@ -354,6 +354,12 @@ public class TestTools extends TestBase {
...
@@ -354,6 +354,12 @@ public class TestTools extends TestBase {
continue
;
continue
;
}
}
int
len
=
m
.
getParameterTypes
().
length
;
int
len
=
m
.
getParameterTypes
().
length
;
if
(
m
.
getName
().
equals
(
"updateObject"
)
&&
m
.
getParameterTypes
().
length
>
2
)
{
Class
<?>
p3
=
m
.
getParameterTypes
()[
2
];
if
(
p3
.
toString
().
indexOf
(
"SQLType"
)
>=
0
)
{
continue
;
}
}
Object
[]
params
=
new
Object
[
len
];
Object
[]
params
=
new
Object
[
len
];
int
i
=
0
;
int
i
=
0
;
String
expectedValue
=
null
;
String
expectedValue
=
null
;
...
...
This diff is collapsed.
Click to expand it.
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论