1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-22 06:02:11 +02:00

Bug 569839: Don't discard exceptions in tests

Change-Id: I710922fcc1b23d61d52fa1aa868b491bc26edf01
This commit is contained in:
Jonah Graham 2020-12-21 10:35:38 -05:00
parent cb35c8daa2
commit f3bee99f00

View file

@ -92,8 +92,6 @@ abstract public class BaseTestFramework extends BaseTestCase {
public void cleanupProject() throws Exception { public void cleanupProject() throws Exception {
try { try {
project.delete(true, false, monitor); project.delete(true, false, monitor);
} catch (Throwable e) {
/*boo*/
} finally { } finally {
project = null; project = null;
} }
@ -116,11 +114,7 @@ abstract public class BaseTestFramework extends BaseTestCase {
continue; continue;
if (member.getName().equals(".settings")) if (member.getName().equals(".settings"))
continue; continue;
try { member.delete(false, monitor);
member.delete(false, monitor);
} catch (Throwable e) {
/*boo*/
}
} }
} }