提交 9f1327c5 authored 作者: Thomas Mueller's avatar Thomas Mueller

--no commit message

--no commit message
上级 c0135cee
...@@ -107,8 +107,6 @@ public abstract class TestBase { ...@@ -107,8 +107,6 @@ public abstract class TestBase {
init(conf); init(conf);
start = System.currentTimeMillis(); start = System.currentTimeMillis();
test(); test();
FileSystem.getInstance("memFS:").deleteRecursive("memFS:");
FileSystem.getInstance("memLZF:").deleteRecursive("memLZF:");
println(""); println("");
} catch (Throwable e) { } catch (Throwable e) {
println("FAIL " + e.toString()); println("FAIL " + e.toString());
...@@ -116,6 +114,13 @@ public abstract class TestBase { ...@@ -116,6 +114,13 @@ public abstract class TestBase {
if (config.stopOnError) { if (config.stopOnError) {
throw new Error("ERROR"); throw new Error("ERROR");
} }
} finally {
try {
FileSystem.getInstance("memFS:").deleteRecursive("memFS:");
FileSystem.getInstance("memLZF:").deleteRecursive("memLZF:");
} catch (SQLException e) {
e.printStackTrace();
}
} }
} }
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论