提交 c01891a8 authored 作者: Thomas Mueller's avatar Thomas Mueller

Single threaded test execution

上级 f8743f49
......@@ -221,6 +221,10 @@ import org.h2.util.Utils;
*/
public class TestAll {
static {
// Locale.setDefault(new Locale("ru", "ru"));
}
/*
PIT test:
......@@ -863,8 +867,10 @@ kill -9 `jps -l | grep "org.h2.test." | cut -d " " -f 1`
}
private void addTest(TestBase test) {
tests.add(test);
// test.runTest(this);
// tests.add(test);
// run directly for now, because concurrently running tests
// fails on Raspberry Pi quite often (seems to be a JVM problem)
test.runTest(this);
}
private void runAddedTests() {
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论